# HG changeset patch # User Ludovic Chabant # Date 1394858475 25200 # Node ID dbc855c585cf246b4ee8d016c48cea085d8a9ac7 # Parent 553dfa009650db1a38cc6b5ed304b1d72102b119 Fixed a bug in the setup script. diff -r 553dfa009650 -r dbc855c585cf setup.py --- a/setup.py Fri Mar 14 21:35:30 2014 -0700 +++ b/setup.py Fri Mar 14 21:41:15 2014 -0700 @@ -19,6 +19,7 @@ # Figure out the version. # (this is loosely based on what Mercurial does) +version = None try: if os.path.isdir('.hg'): cmd = ['hg', 'log', '-r', '.', '--template', '{tags}\n']