Toggle navigation
Toggle navigation
This project
Loading...
Sign in
서승완
/
kappa
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Authored by
Mitch Garnaat
2015-01-16 05:20:42 -0800
Browse Files
Options
Browse Files
Download
Plain Diff
Commit
c8bf85c12db1e6301bd7c7e65ef4099e7a8a8f7f
c8bf85c1
2 parents
edc6fbc3
9f523959
Merge pull request #4 from garnaat/fix-tuple-comma
Add trailing comma to single element tuple.
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
kappa/stack.py
kappa/stack.py
View file @
c8bf85c
...
...
@@ -22,7 +22,7 @@ LOG = logging.getLogger(__name__)
class
Stack
(
object
):
completed_states
=
(
'CREATE_COMPLETE'
,
'UPDATE_COMPLETE'
)
failed_states
=
(
'ROLLBACK_COMPLETE'
)
failed_states
=
(
'ROLLBACK_COMPLETE'
,
)
def
__init__
(
self
,
context
,
config
):
self
.
_context
=
context
...
...
Please
register
or
login
to post a comment