Skip to content
This repository has been archived by the owner on Mar 20, 2024. It is now read-only.

Commit

Permalink
Auto merge of #179 - servo:jdm-patch-2, r=Manishearth
Browse files Browse the repository at this point in the history
Fix TravisCI errors

Fixes #178.

<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/homu/179)
<!-- Reviewable:end -->
  • Loading branch information
bors-servo committed Nov 9, 2018
2 parents ce2048f + 3b4f966 commit cbbfe97
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
sudo: false
language: python
python:
- 3.3
- 3.4
- 3.5
- 3.6
Expand Down
4 changes: 2 additions & 2 deletions homu/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ def callback():
'client_secret': g.cfg['github']['app_client_secret'],
'code': code,
})
except Exception as ex:
except Exception as ex: # noqa
logger.warn('/callback encountered an error '
'during github oauth callback')
# probably related to https://gitlab.com/pycqa/flake8/issues/42
Expand Down Expand Up @@ -649,7 +649,7 @@ def buildbot():
props['buildnumber'],
step_name,)
res = requests.get(url)
except Exception as ex:
except Exception as ex: # noqa
logger.warn('/buildbot encountered an error during '
'github logs request')
# probably related to
Expand Down

0 comments on commit cbbfe97

Please sign in to comment.