mirror of
https://github.com/freedoom/freedoom.git
synced 2025-08-30 17:16:55 -04:00
Merge pull request #1332 from selliott512/makepkgs-is-keyword
scripts: For "makepkgs" replace "is" with "=="
This commit is contained in:
commit
25b3642324
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@ version = os.getenv("VERSION")
|
|||
if version is None:
|
||||
sys.stderr.write("Version not specified for release\n")
|
||||
sys.exit(1)
|
||||
if version[0] is "v":
|
||||
if version[0] == "v":
|
||||
# Strip the leading "v" from versioning
|
||||
version = version[1:]
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue