summaryrefslogtreecommitdiff
path: root/src/leap/keymanager/_version.py
diff options
context:
space:
mode:
authorBruno Wagner <bwgpro@gmail.com>2015-07-24 16:24:13 -0300
committerBruno Wagner <bwgpro@gmail.com>2015-08-03 17:16:57 -0300
commit3fab338ef4e1ae0efcfaee455ae04881aa013083 (patch)
tree6bcf55e666e2ff686e8a182d05a49c2898c9169a /src/leap/keymanager/_version.py
parent05d599a22ed4c31dbd09a79bd1b2e00a716614aa (diff)
[style] Fixed pep8 warnings
Fixed pep8 warnings to prepare the keymanager for CI
Diffstat (limited to 'src/leap/keymanager/_version.py')
-rw-r--r--src/leap/keymanager/_version.py19
1 files changed, 8 insertions, 11 deletions
diff --git a/src/leap/keymanager/_version.py b/src/leap/keymanager/_version.py
index 28fca96..5153a9b 100644
--- a/src/leap/keymanager/_version.py
+++ b/src/leap/keymanager/_version.py
@@ -1,5 +1,3 @@
-
-IN_LONG_VERSION_PY = True
# This file helps to compute a version number in source trees obtained from
# git-archive tarball (such as those provided by githubs download-from-tag
# feature). Distribution tarballs (build by setup.py sdist) and build
@@ -10,12 +8,15 @@ IN_LONG_VERSION_PY = True
# versioneer-0.7+ (https://github.com/warner/python-versioneer)
# these strings will be replaced by git during git-archive
-git_refnames = "$Format:%d$"
-git_full = "$Format:%H$"
-
-
import subprocess
import sys
+import re
+import os.path
+
+IN_LONG_VERSION_PY = True
+
+git_refnames = "$Format:%d$"
+git_full = "$Format:%H$"
def run_command(args, cwd=None, verbose=False):
@@ -38,10 +39,6 @@ def run_command(args, cwd=None, verbose=False):
return stdout
-import re
-import os.path
-
-
def get_expanded_variables(versionfile_source):
# the code embedded in _version.py can just fetch the value of these
# variables. When used from setup.py, we don't want to import
@@ -86,7 +83,7 @@ def versions_from_expanded_variables(variables, tag_prefix, verbose=False):
# "stabilization", as well as "HEAD" and "master".
tags = set([r for r in refs if re.search(r'\d', r)])
if verbose:
- print("discarding '%s', no digits" % ",".join(refs-tags))
+ print("discarding '%s', no digits" % ",".join(refs - tags))
if verbose:
print("likely tags: %s" % ",".join(sorted(tags)))
for ref in sorted(tags):