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.
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',