diff options
author | W. Trevor King <wking@drexel.edu> | 2009-12-13 08:31:33 -0500 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2009-12-13 08:31:33 -0500 |
commit | d21c50ece316536b5972725eced19b40d6e2589d (patch) | |
tree | 19279560a51ae113e1841f2322e2e67ce4d4d64a /libbe/storage/vcs/hg.py | |
parent | 9fa977a31982a2eda08c2c18ade73bd114f477b1 (diff) | |
download | bugseverywhere-d21c50ece316536b5972725eced19b40d6e2589d.tar.gz |
Fix Git._vcs_revision_id() offset bug.
Diffstat (limited to 'libbe/storage/vcs/hg.py')
-rw-r--r-- | libbe/storage/vcs/hg.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libbe/storage/vcs/hg.py b/libbe/storage/vcs/hg.py index f1a7eef..633987a 100644 --- a/libbe/storage/vcs/hg.py +++ b/libbe/storage/vcs/hg.py @@ -25,14 +25,14 @@ import os import os.path import re import shutil -import sys import libbe import base if libbe.TESTING == True: - import unittest import doctest + import sys + import unittest def new(): |