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

This commit is contained in:
Brian Warner 2007-01-05 21:12:26 -07:00
parent 94b1840295
commit 9382d61208

View File

@ -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