Skip to content

Commit

Permalink
2.024 display python version in verstr
Browse files Browse the repository at this point in the history
  • Loading branch information
fffonion committed Oct 27, 2024
1 parent 6b55353 commit d5a8f8e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions xeHentai/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ def __init__(self):
self.verstr = "%.3f%s" % (__version__, '-dev' if DEVELOPMENT else "")
if VERSION_UPDATE:
self.verstr = "%s-%s(%s)" % (self.verstr, VERSION_UPDATE[:7], VERSION_UPDATE_LOADER)
self.verstr = "%s-py%d%d" % (self.verstr, sys.version_info[0], sys.version_info[1])
self.logger = logger.Logger()
self._exit = False
self.tasks = Queue() # for queueing, stores gid only
Expand Down

0 comments on commit d5a8f8e

Please sign in to comment.