From: zooko <zooko@zooko.com>
Date: Wed, 17 Jun 2009 16:06:09 +0000 (+0530)
Subject: setup: merge two patches which both change VERSIONFILE name computation to the typica... 
X-Git-Url: https://git.rkrishnan.org/simplejson/components//%22%22.?a=commitdiff_plain;h=e90b517caa32c53f7ff2991cfa1c224cfe305f4a;p=tahoe-lafs%2Fzfec.git

setup: merge two patches which both change VERSIONFILE name computation to the typical way it is done in my setup boilerplate

Ignore-this: 68b65973cf5953567b95a17c1ef1635d

darcs-hash:1d0ba49a479c745dbb5bb780f30b8bcc41631f51
---

diff --git a/zfec/setup.py b/zfec/setup.py
index 3c187c9..ef123dc 100755
--- a/zfec/setup.py
+++ b/zfec/setup.py
@@ -85,7 +85,7 @@ trove_classifiers=[
     ]
 
 PKG = "zfec"
-VERSIONFILE = PKG+"/_version.py"
+VERSIONFILE = os.path.join(PKG, "_version.py")
 verstr = "unknown"
 try:
     verstrline = open(VERSIONFILE, "rt").read()