Fix pep8 reports

Zero findings after this commit. We should try to keep that level.

Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
This commit is contained in:
Jan Kiszka
2017-06-21 13:32:55 +02:00
committed by Daniel Wagner
parent 062e919295
commit 6bc8e08459
4 changed files with 10 additions and 6 deletions

View File

@@ -199,8 +199,8 @@ class ConfigStatic(Config):
(rc, output) = run_cmd(['/usr/bin/git',
'rev-parse',
'--show-toplevel'],
cwd=os.path.dirname(self.filename),
env=self.environ)
cwd=os.path.dirname(self.filename),
env=self.environ)
url = output.strip()
r = Repo(url=url,
path=url,
@@ -260,7 +260,7 @@ class ConfigJson(ConfigStatic):
try:
with open(self.filename, 'r') as f:
self._config = json.load(f)
except json.decoder.JSONDecodeError as msg:
except json.decoder.JSONDecodeError as msg:
logging.error('Could not load JSON config: {}'.format(msg))
sys.exit(1)
self.setup_environ()