summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2006-07-26 18:59:40 +0200
committerMichael Vogt <michael.vogt@ubuntu.com>2006-07-26 18:59:40 +0200
commit8d79b99c1a3338e31e8def858cee3209824ae8bf (patch)
treeb45ca351fada3e59ee47bc2336923c36e3264849 /python
parente7fde76bef8ba317cd6cc681c21c27d4aad13199 (diff)
downloadpython-apt-8d79b99c1a3338e31e8def858cee3209824ae8bf.tar.gz
* #cough# - actually use sha256
Diffstat (limited to 'python')
-rw-r--r--python/apt_pkgmodule.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/apt_pkgmodule.cc b/python/apt_pkgmodule.cc
index 01e9c200..b1c5c2a5 100644
--- a/python/apt_pkgmodule.cc
+++ b/python/apt_pkgmodule.cc
@@ -408,7 +408,7 @@ static PyMethodDef methods[] =
// Stuff
{"md5sum",md5sum,METH_VARARGS,doc_md5sum},
{"sha1sum",sha1sum,METH_VARARGS,doc_sha1sum},
- {"sha256sum",sha1sum,METH_VARARGS,doc_sha256sum},
+ {"sha256sum",sha256sum,METH_VARARGS,doc_sha256sum},
// Strings
{"CheckDomainList",StrCheckDomainList,METH_VARARGS,"CheckDomainList(String,String) -> Bool"},