Skip to content

Commit 84c7397

Browse files
committed
fix finding version
1 parent af17c24 commit 84c7397

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
Framework :: Robot Framework
2323
""".strip().splitlines()
2424
with open(join(CURDIR, 'src', 'robotlibcore.py')) as f:
25-
VERSION = re.search("\n__version__ = '(.*)'", f.read()).group(1)
25+
VERSION = re.search('\n__version__ = "(.*)"', f.read()).group(1)
2626
with open(join(CURDIR, 'README.rst')) as f:
2727
LONG_DESCRIPTION = f.read()
2828

0 commit comments

Comments
 (0)