+2007-12-30 Joerg Jaspert <joerg@debian.org>
+
+ * dak/examine_package.py (print_copyright): ignore stderr when
+ finding copyright file.
+
2007-12-28 Anthony Towns <ajt@debian.org>
* daklib/utils.py (check_signature): add NOTATION_DATA and
print "WARNING: wrong doc directory (expected %s, got %s)." % (package, doc_directory)
return
- o = os.popen("dpkg-deb --fsys-tarfile %s | tar xvOf - %s" % (deb_filename, copyright))
+ o = os.popen("dpkg-deb --fsys-tarfile %s | tar xvOf - %s 2>/dev/null" % (deb_filename, copyright))
copyright = o.read()
copyrightmd5 = md5.md5(copyright).hexdigest()