Skip to content

Commit

Permalink
VERSION was always set to a string number
Browse files Browse the repository at this point in the history
The internal buildbot now sets it correctly to an integer. That's why we
need to cast VERSION to a string now when creating sp_version
  • Loading branch information
Ayuto committed Oct 2, 2015
1 parent 400be82 commit 534853a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
# >> GLOBAL VARIABLES
# =============================================================================
_sp_version = PublicConVar(
'sp_version', VERSION, description='Source.Python version')
'sp_version', str(VERSION), description='Source.Python version')


# =============================================================================
Expand Down

0 comments on commit 534853a

Please sign in to comment.