From 36da784b196e2ce60c772e085636e9f2b18844ea Mon Sep 17 00:00:00 2001 From: Gianluca Date: Thu, 24 Jun 2010 16:12:39 -0400 Subject: [PATCH] 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. --- setup.py | 4 ++-- 1 file 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', -- 2.26.2