~cloud-init-dev/cloud-init/trunk

« back to all changes in this revision

Viewing changes to cloudinit/sources/DataSourceCloudStack.py

Enable flake8 and fix a large amount of reported issues

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
26
26
 
27
27
import os
28
 
import time
29
28
from socket import inet_ntoa
30
29
from struct import pack
 
30
import time
31
31
 
32
32
from cloudinit import ec2_utils as ec2
33
33
from cloudinit import log as logging
 
34
from cloudinit import sources
34
35
from cloudinit import url_helper as uhelp
35
 
from cloudinit import sources, util
 
36
from cloudinit import util
36
37
 
37
38
LOG = logging.getLogger(__name__)
38
39