Skip to content

Commit

Permalink
- don't convert strings like "0b2" to int
Browse files Browse the repository at this point in the history
  • Loading branch information
dataflake committed Jun 13, 2018
1 parent 2f7af83 commit 3c87c0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
# other places throughout the built documents.
#
# The short X.Y version.
version = '%s.%s' % tuple(map(int, rqmt.version.split('.')[:2]))
version = '%s.%s' % tuple(rqmt.version.split('.')[:2])
# The full version, including alpha/beta/rc tags.
release = rqmt.version

Expand Down

0 comments on commit 3c87c0e

Please sign in to comment.