Skip to content

Commit f8be493

Browse files
committed
Fix properly
1 parent 01a9f2b commit f8be493

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pythreejs/_version.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44

55
postfix = ''
66
if version_info[3] != 'final':
7-
if version_info[3] == 'dev' and len(version_info) < 4:
7+
if version_info[3] == 'dev' and len(version_info) < 5:
88
postfix = 'dev0'
99
else:
10-
postfix = _specifier_[version_info[3]] + str(version_info[4]))
10+
postfix = _specifier_[version_info[3]] + str(version_info[4])
1111

1212
__version__ = '%s.%s.%s%s' % (version_info[0], version_info[1], version_info[2], postfix)
1313

0 commit comments

Comments
 (0)