We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af17c24 commit 84c7397Copy full SHA for 84c7397
setup.py
@@ -22,7 +22,7 @@
22
Framework :: Robot Framework
23
""".strip().splitlines()
24
with open(join(CURDIR, 'src', 'robotlibcore.py')) as f:
25
- VERSION = re.search("\n__version__ = '(.*)'", f.read()).group(1)
+ VERSION = re.search('\n__version__ = "(.*)"', f.read()).group(1)
26
with open(join(CURDIR, 'README.rst')) as f:
27
LONG_DESCRIPTION = f.read()
28
0 commit comments