diff options
author | Guido Guenther <agx@sigxcpu.org> | 2008-04-17 17:44:04 +0200 |
---|---|---|
committer | Guido Guenther <agx@sigxcpu.org> | 2008-04-17 17:44:04 +0200 |
commit | 45f8fb666d264b8ea45d0ec9122d8882f10b96ae (patch) | |
tree | fb36282660c2374c93b641ba4baac6da1f0cc0b9 | |
parent | 153bb06faebcfb9e884e6787799322792512d2a3 (diff) | |
download | git-buildpackage-45f8fb666d264b8ea45d0ec9122d8882f10b96ae.tar.gz git-buildpackage-45f8fb666d264b8ea45d0ec9122d8882f10b96ae.tar.bz2 git-buildpackage-45f8fb666d264b8ea45d0ec9122d8882f10b96ae.zip |
fix unpack_orig error reporting
by addint the missing imports
-rw-r--r-- | gbp/deb_utils.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gbp/deb_utils.py b/gbp/deb_utils.py index d6116fff..c7c038f3 100644 --- a/gbp/deb_utils.py +++ b/gbp/deb_utils.py @@ -6,8 +6,10 @@ import email import commands import os +import sys import shutil import command_wrappers as gbpc +from errors import GbpError # When trying to parse a version-number from a dsc or changes file, these are # the valid characters. |