~soren/nova/iptables-security-groups

« back to all changes in this revision

Viewing changes to nova/crypto.py

  • Committer: Jesse Andrews
  • Date: 2010-07-15 23:13:48 UTC
  • mto: This revision was merged to the branch mainline in revision 142.
  • Revision ID: jesse@gigantor.local-20100715231348-vml8qldrdofx79do
reorder imports spacing

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
import base64
25
25
import hashlib
26
26
import logging
 
27
import M2Crypto
27
28
import os
28
29
import shutil
29
30
import struct
31
32
import time
32
33
import utils
33
34
 
34
 
 
35
 
import M2Crypto
36
 
 
37
35
from nova import exception
38
36
from nova import flags
39
37