From 9382d612089cda5e1638c1203d42330b435618d4 Mon Sep 17 00:00:00 2001 From: Brian Warner Date: Fri, 5 Jan 2007 21:12:26 -0700 Subject: [PATCH] use absolute import of 'allmydata.Crypto' rather than a relative import of just 'Crypto', to make it clear that we're using our own form rather than relying upon the system version --- src/allmydata/encode_new.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/allmydata/encode_new.py b/src/allmydata/encode_new.py index 3c136b28..ec6fd66c 100644 --- a/src/allmydata/encode_new.py +++ b/src/allmydata/encode_new.py @@ -2,7 +2,7 @@ from twisted.internet import defer from allmydata.chunk import HashTree, roundup_pow2 -from Crypto.Cipher import AES +from allmydata.Crypto.Cipher import AES import sha from allmydata.util import mathutil from allmydata.encode import PyRSEncoder -- 2.45.2