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 74cb750 commit e22d0e2Copy full SHA for e22d0e2
setup.py
@@ -15,7 +15,7 @@ def read_file(filename, encoding='utf8'):
15
here = os.path.abspath(os.path.dirname(__file__))
16
17
module = read_file(os.path.join(here, 'wls_rest_python.py'))
18
-meta = dict(re.findall(r"""__([a-z]+)__ = '([^']+)""", module))
+meta = dict(re.findall(r"""__([a-z]+)__ = "([^"]+)""", module))
19
20
readme = read_file(os.path.join(here, 'README.rst'))
21
version = meta['version']
0 commit comments