~corey.bryant/python-novaclient/2.26.0

« back to all changes in this revision

Viewing changes to novaclient/v1_1/flavors.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2014-09-18 08:52:31 UTC
  • mfrom: (1.1.35)
  • Revision ID: package-import@ubuntu.com-20140918085231-56hs515gp9zpb9sd
Tags: 1:2.19.0-0ubuntu1
* New upstream release.
* debian/control: Drop python-d2to1, python-httpretty as build dependency.
* debian/control: Add python-requests-mock as build dependency.
* debian/control: Add python-oslo.utils.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
Flavor interface.
17
17
"""
18
18
 
 
19
from oslo.utils import strutils
19
20
from six.moves.urllib import parse
20
21
 
21
22
from novaclient import base
22
23
from novaclient import exceptions
23
24
from novaclient.openstack.common.gettextutils import _
24
 
from novaclient.openstack.common import strutils
25
25
from novaclient import utils
26
26
 
27
27