aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGianluca <gian@grys.it>2010-06-24 16:12:39 -0400
committerW. Trevor King <wking@drexel.edu>2010-06-24 16:12:39 -0400
commit36da784b196e2ce60c772e085636e9f2b18844ea (patch)
tree582f95cd96dffaa3b5f55d03fcc8cb264e0f6ebc
parent2dbd638083487400afd3b1d6a0d7a4e925c7db1f (diff)
downloadbugseverywhere-36da784b196e2ce60c772e085636e9f2b18844ea.tar.gz
Little fix to setup.py
I applied Gianluca's patch, but used "revision" in both the Makefile command for _version.py and setup.py, rather than using "revision_id" in both places. With Git, there is no longer a need to distinguish revision IDs from revision numbers.
-rwxr-xr-xsetup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index ab0a608..da1ebad 100755
--- a/setup.py
+++ b/setup.py
@@ -3,8 +3,8 @@
from distutils.core import setup
from libbe import _version
-rev_id = _version.version_info["revision_id"]
-rev_date = rev_id.split("-")[1]
+rev_id = _version.version_info["revision"]
+rev_date = _version.version_info["date"]
setup(
name='Bugs Everywhere',