Skip to content

Commit ed8dc16

Browse files
authored
Merge pull request skonfig#134 from riiengineering/fix/version/py32
Fix -V for Python 3.2
2 parents 6f97687 + db38a44 commit ed8dc16

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

skonfig/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def print_version(color):
6464
fmt = "%s %s%s"
6565

6666
v = re.match("([0-9.]+)(.*)", skonfig.__version__).groups()
67-
print(fmt % ("skonfig", *v))
67+
print(fmt % ("skonfig", v[0], v[1]))
6868

6969

7070
def run_main():

0 commit comments

Comments
 (0)