summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean Finney <seanius@debian.org>2011-03-30 19:43:23 +0200
committerSean Finney <seanius@debian.org>2011-03-30 19:43:23 +0200
commit28a52212a6a96aff067de011ff2dfc36364a31fa (patch)
tree268504b879526e34c192f73d7fcd5ec71fe7f68b
parentdcbdefd119d43af6f8e11d97812ebd1942e1b8e8 (diff)
downloadpatch-tracker-28a52212a6a96aff067de011ff2dfc36364a31fa.tar.gz
No longer support debian_bundle, it's deprecated
-rwxr-xr-xpatchtracker/SourceArchive.py2
-rwxr-xr-xreprepro/conf/diffsonly.py6
2 files changed, 2 insertions, 6 deletions
diff --git a/patchtracker/SourceArchive.py b/patchtracker/SourceArchive.py
index 303bcdd..f19dd15 100755
--- a/patchtracker/SourceArchive.py
+++ b/patchtracker/SourceArchive.py
@@ -2,7 +2,7 @@ import os
import errno
from fnmatch import fnmatch
from gzip import GzipFile
-from debian_bundle import deb822
+from debian import deb822
import difflib
from patchtracker import Conf
diff --git a/reprepro/conf/diffsonly.py b/reprepro/conf/diffsonly.py
index 460cb2b..12adb66 100755
--- a/reprepro/conf/diffsonly.py
+++ b/reprepro/conf/diffsonly.py
@@ -1,10 +1,6 @@
#!/usr/bin/python
-try:
- from debian import deb822
-except ImportError:
- from debian_bundle import deb822
-
+from debian import deb822
from gzip import GzipFile
from fnmatch import fnmatch
import sys