Mitch Garnaat

Fixing Python 3.x issues.

......@@ -118,7 +118,7 @@ class Stack(object):
StackName=self.name, TemplateBody=template_body,
Capabilities=['CAPABILITY_IAM'])
LOG.debug(response)
except Exception, e:
except Exception as e:
if 'ValidationError' in str(e):
LOG.info('No Updates Required')
else:
......
......@@ -16,7 +16,7 @@ import unittest
import mock
from kappa.log import Log
from mock_aws import get_aws
from tests.unit.mock_aws import get_aws
class TestLog(unittest.TestCase):
......
......@@ -17,7 +17,7 @@ import os
import mock
from kappa.stack import Stack
from mock_aws import get_aws
from tests.unit.mock_aws import get_aws
Config = {
'template': 'roles.cf',
......