Mitch Garnaat

Merge pull request #4 from garnaat/fix-tuple-comma

Add trailing comma to single element tuple.
...@@ -22,7 +22,7 @@ LOG = logging.getLogger(__name__) ...@@ -22,7 +22,7 @@ LOG = logging.getLogger(__name__)
22 class Stack(object): 22 class Stack(object):
23 23
24 completed_states = ('CREATE_COMPLETE', 'UPDATE_COMPLETE') 24 completed_states = ('CREATE_COMPLETE', 'UPDATE_COMPLETE')
25 - failed_states = ('ROLLBACK_COMPLETE') 25 + failed_states = ('ROLLBACK_COMPLETE',)
26 26
27 def __init__(self, context, config): 27 def __init__(self, context, config):
28 self._context = context 28 self._context = context
......