~soren/nova/iptables-security-groups

« back to all changes in this revision

Viewing changes to nova/cloudpipe/api.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:
21
21
"""
22
22
 
23
23
import logging
 
24
import tornado.web
24
25
import urllib
25
26
 
26
 
 
27
 
import tornado.web
28
 
 
29
27
from nova import crypto
30
28
from nova.auth import users
31
29
 
 
30
 
32
31
_log = logging.getLogger("api")
33
32
_log.setLevel(logging.DEBUG)
34
33