From 5171a936083a577c065484a395a20e4d859cc8a2 Mon Sep 17 00:00:00 2001 From: Kishi85 Date: Sun, 24 Mar 2019 17:17:26 +0100 Subject: [PATCH] setup: Add a single space for PEP-8 --- acertmgr/modes/webdir.py | 1 + setup.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/acertmgr/modes/webdir.py b/acertmgr/modes/webdir.py index 1365f82..7a2878d 100644 --- a/acertmgr/modes/webdir.py +++ b/acertmgr/modes/webdir.py @@ -7,6 +7,7 @@ import datetime import os + from acertmgr import tools from acertmgr.modes.abstract import AbstractChallengeHandler diff --git a/setup.py b/setup.py index bf5633b..34bb686 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ def determine_version(): return version # Derive version from git try: - output = subprocess.check_output(['git', 'describe', '--tags', '--dirty'], cwd=dir_path)\ + output = subprocess.check_output(['git', 'describe', '--tags', '--dirty'], cwd=dir_path) \ .decode('utf-8').strip().split('-') if len(output) == 1: return output[0]