Skip to content

Commit

Permalink
Make crypto use absolute imports
Browse files Browse the repository at this point in the history
 * Fixes bug 925792
 * Cleans up some extra imports as well

Change-Id: Ibea2411f552747e074c8d2e96468e3b09bf9c9c9
  • Loading branch information
vishvananda committed Feb 2, 2012
1 parent 1a88c64 commit b863fb3
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions nova/crypto.py
Expand Up @@ -22,25 +22,24 @@
"""

from __future__ import absolute_import

import base64
import gettext
import hashlib
import os
import shutil
import string
import tempfile
import utils

import Crypto.Cipher.AES

gettext.install('nova', unicode=1)

from nova.common import cfg
from nova import context
from nova import db
from nova import exception
from nova import flags
from nova import log as logging
from nova import utils


LOG = logging.getLogger("nova.crypto")
Expand Down

0 comments on commit b863fb3

Please sign in to comment.