diff options
author | Guillem Jover <guillem@debian.org> | 2014-05-07 21:06:38 +0200 |
---|---|---|
committer | Helmut Grohne <helmut@subdivi.de> | 2014-05-11 15:29:11 +0200 |
commit | ddaa08f7a63a1fedf4c1f2804873199dd5182142 (patch) | |
tree | 7e2739619a562f9313141700d9bac6661cd99f26 /dedup | |
parent | cb3900603b79731891adbe44a1a1b3eb19f16cad (diff) | |
download | debian-dedup-ddaa08f7a63a1fedf4c1f2804873199dd5182142.tar.gz |
importpkg: add support for control.tar and control.tar.xz
dpkg supports those since 1.17.6.
Signed-off-by: Guillem Jover <guillem@debian.org>
Diffstat (limited to 'dedup')
-rw-r--r-- | dedup/debpkg.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dedup/debpkg.py b/dedup/debpkg.py index 2d67135..dbee849 100644 --- a/dedup/debpkg.py +++ b/dedup/debpkg.py @@ -3,7 +3,7 @@ from debian import deb822 from dedup.hashing import hash_file def process_control(control_contents): - """Parses the contents of a control file from a control.tar.gz of a Debian + """Parses the contents of a control file from a control.tar of a Debian package and returns a dictionary containing the fields relevant to dedup. @type control_contents: bytes @rtype: {str: object} |