Skip to content

Commit

Permalink
If we didn't find a revision, set it to "-1" not just "None"
Browse files Browse the repository at this point in the history
  • Loading branch information
eht16 committed Oct 9, 2011
1 parent 50ae630 commit 8ed1664
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wscript
Expand Up @@ -186,7 +186,7 @@ def configure(conf):
conf.define('GEANY_PREFIX', '' if is_win32 else conf.env['PREFIX'], quote=True)
conf.define('PACKAGE', APPNAME, quote=True)
conf.define('VERSION', VERSION, quote=True)
conf.define('REVISION', revision, quote=True)
conf.define('REVISION', revision or '-1', quote=True)

conf.define('GETTEXT_PACKAGE', APPNAME, quote=True)

Expand Down

0 comments on commit 8ed1664

Please sign in to comment.