]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
setup.py: fix move to _version.py
authorBrian Warner <warner@lothar.com>
Wed, 12 Sep 2007 23:02:23 +0000 (16:02 -0700)
committerBrian Warner <warner@lothar.com>
Wed, 12 Sep 2007 23:02:23 +0000 (16:02 -0700)
setup.py

index 87a3025700542ba8d93e5d889d5520f042fb5424..50aeccb9d563417503d2ff33114b4cf18702cdcd 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -55,7 +55,7 @@ trove_classifiers=[
     ]
 
 
-VERSIONFILE = "src/allmydata/version.py"
+VERSIONFILE = "src/allmydata/_version.py"
 verstr = "unknown"
 if os.path.exists(VERSIONFILE):
     VSRE = re.compile("^verstr = ['\"]([^'\"]*)['\"]", re.M)
@@ -64,8 +64,8 @@ if os.path.exists(VERSIONFILE):
     if mo:
         verstr = mo.group(1)
     else:
-        print "unable to find version in version.py"
-        raise RuntimeError("if version.py exists, it must be well-formed")
+        print "unable to find version in src/allmydata/_version.py"
+        raise RuntimeError("if _version.py exists, it must be well-formed")
 
 
 LONG_DESCRIPTION=\