Package: python-debian
Version: 0.1.12
Severity: normal
Tags: patch
User: [email protected]
Usertags: origin-ubuntu jaunty ubuntu-patch
Hello,
Attached is a patch to clean up python2.6 warnings about the deprecation of
sha.
Thanks,
-Kees
--
Kees Cook @debian.org
diff -Nru python-debian-0.1.12/debian_bundle/debian_support.py python-debian-0.1.12ubuntu1/debian_bundle/debian_support.py
--- python-debian-0.1.12/debian_bundle/debian_support.py 2008-08-09 15:47:46.000000000 -0700
+++ python-debian-0.1.12ubuntu1/debian_bundle/debian_support.py 2009-03-05 16:46:45.000000000 -0800
@@ -19,7 +19,7 @@
import os
import re
-import sha
+import hashlib
import types
import apt_pkg
@@ -173,7 +173,7 @@
del listReleases
def readLinesSHA1(lines):
- m = sha.new()
+ m = hashlib.sha1()
for l in lines:
m.update(l)
return m.hexdigest()