Skip to content

Commit 85f66c5

Browse files
committed
Fix version string
1 parent b7cd424 commit 85f66c5

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
@@ -7,7 +7,7 @@ def get_version():
77
curdir = os.path.dirname(__file__)
88
filename = os.path.join(curdir, 'src', 'mailman_rss', 'version.py')
99
with open(filename, 'rb') as fp:
10-
return fp.read().decode('utf8').split('=')[1].strip(" \n'")
10+
return fp.read().decode('utf8').split('=')[1].strip(' \n"')
1111

1212

1313
def readme(filename):

0 commit comments

Comments
 (0)