Skip to content

Commit

Permalink
flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
tardyp committed Jan 6, 2018
1 parent 9e88375 commit 35064e9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion buildbot_travis/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def saveConfig(self, request):
if cfg != self._cfg:
try:
err = yield self.saveCfg(cfg)
except Exception as e: # noqa
except Exception as e: # noqa
err = [repr(e)]
if err is not None:
self._in_progress = False
Expand Down
4 changes: 2 additions & 2 deletions buildbot_travis/vcs/git.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
from __future__ import print_function
from future.moves.urllib.parse import urlparse

from buildbot.plugins import changes, util
from buildbot.plugins import changes
from buildbot.steps.source.git import Git

from .base import PollerMixin, VCSBase, getCodebaseForRepository
from .base import PollerMixin, VCSBase


class ParsedGitUrl(object):
Expand Down

0 comments on commit 35064e9

Please sign in to comment.