Skip to content

Commit c4e9cab

Browse files
Fix eol in version string
1 parent 22d1fcc commit c4e9cab

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
@@ -30,7 +30,7 @@
3030
if os.path.exists(vpath):
3131
print("use 3xisting %s file" % vpath)
3232
f = open(vpath,"r" )
33-
PKG_VERSION_STR = f.read()
33+
PKG_VERSION_STR = f.read().strip()
3434
f.close()
3535

3636
def which(bin_exe):

0 commit comments

Comments
 (0)