~ubuntu-branches/ubuntu/quantal/nova/quantal-proposed

« back to all changes in this revision

Viewing changes to nova/crypto.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2012-02-10 11:25:38 UTC
  • mto: This revision was merged to the branch mainline in revision 65.
  • Revision ID: package-import@ubuntu.com-20120210112538-3jcp8w9huic41e45
Tags: upstream-2012.1~e4~20120210.12574
ImportĀ upstreamĀ versionĀ 2012.1~e4~20120210.12574

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
 
34
34
import Crypto.Cipher.AES
35
35
 
36
 
from nova.common import cfg
37
36
from nova import context
38
37
from nova import db
39
38
from nova import exception
40
39
from nova import flags
41
40
from nova import log as logging
 
41
from nova.openstack.common import cfg
42
42
from nova import utils
43
43
 
44
44