pep8 issues
diff --git a/ec2stack/__init__.py b/ec2stack/__init__.py
index 1e5b729..def8727 100644
--- a/ec2stack/__init__.py
+++ b/ec2stack/__init__.py
@@ -125,7 +125,8 @@
     config.read(config_file)
 
     if not config.has_section(profile):
-        sys.exit('No profile matching ' + profile + ' found in configuration, please run ec2stack-configure -p ' + profile)
+        sys.exit('No profile matching ' + profile +
+                 ' found in configuration, please run ec2stack-configure -p ' + profile)
 
     for attribute in config.options(profile):
         app.config[attribute.upper()] = config.get(profile, attribute)
diff --git a/ec2stack/configure.py b/ec2stack/configure.py
index 9255c1d..0c7f9d4 100644
--- a/ec2stack/configure.py
+++ b/ec2stack/configure.py
@@ -192,7 +192,8 @@
         config = _read_user_instance_mappings(config, profile)
 
     configure_resource_type_mapings = raw_input(
-        'Do you wish to input resource type to resource id mappings' + ' for tag support? (Yes/No): '
+        'Do you wish to input resource type to resource id mappings' +
+        ' for tag support? (Yes/No): '
     )
 
     if configure_resource_type_mapings.lower() in ['yes', 'y']: