Skip to content

Commit 7ddcd64

Browse files
committed
setversion broke setup.py - fixed both scripts
1 parent 0d0d49c commit 7ddcd64

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939
setup(
4040
name='cbapi',
41-
version='1.6.0'
41+
version='1.6.0',
4242
url='https://github.com/carbonblack/cbapi-python',
4343
license='MIT',
4444
author='Carbon Black',

setversion.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def setup_rewriter(line, ctxt):
6161
ctxt["setup_expr"] = expr
6262
m = expr.match(line)
6363
if m:
64-
return "{0}version='{1}'\n".format(m.group(1), ctxt["version"])
64+
return "{0}version='{1}',\n".format(m.group(1), ctxt["version"])
6565
return None
6666

6767

0 commit comments

Comments
 (0)