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:18:10 -0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
9f523959cca08cd7abd196f7c64289f760de0179
9f523959
1 parent
edc6fbc3
Add trailing comma to single element tuple.
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
kappa/stack.py
kappa/stack.py
View file @
9f52395
...
...
@@ -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