X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=dak%2Fdecode_dot_dak.py;h=7ea342bdb6818ed6649288c40ee46169489f2ced;hb=b5d21dfae245e479a1dfd261b7f1a9d9bf2e9b99;hp=d4373641a0d11e853f1c64bde4a62b8b0df04827;hpb=d0a12f9f8e9fe208a277e020d244a55eb6a874c4;p=dak.git diff --git a/dak/decode_dot_dak.py b/dak/decode_dot_dak.py index d4373641..7ea342bd 100644 --- a/dak/decode_dot_dak.py +++ b/dak/decode_dot_dak.py @@ -28,8 +28,8 @@ import sys import apt_pkg -import daklib.queue as queue -import daklib.utils as utils +from daklib import queue +from daklib import utils ################################################################################ @@ -101,9 +101,9 @@ def main(): for f in files.keys(): print " %s:" % (f) for i in [ "package", "version", "architecture", "type", "size", - "md5sum", "component", "location id", "source package", - "source version", "maintainer", "dbtype", "files id", - "new", "section", "priority", "pool name" ]: + "md5sum", "sha1sum", "sha256sum", "component", "location id", + "source package", "source version", "maintainer", "dbtype", + "files id", "new", "section", "priority", "pool name" ]: if files[f].has_key(i): print " %s: %s" % (i.capitalize(), files[f][i]) del files[f][i]