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-12-13 23:43:23 -0500
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
d84c600905e535f94c8a5d83a5facf19aa3bf6f9
d84c6009
1 parent
6c72d7dd
Fix 2.x only syntax on an except clause.
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
kappa/function.py
kappa/function.py
View file @
d84c600
...
...
@@ -322,7 +322,7 @@ class Function(object):
self
.
_context
.
environment
)
self
.
create_alias
(
self
.
_context
.
environment
,
description
)
ready
=
True
except
ClientError
,
e
:
except
ClientError
as
e
:
if
'InvalidParameterValueException'
in
str
(
e
):
LOG
.
debug
(
'Role is not ready, waiting'
)
time
.
sleep
(
2
)
...
...
Please
register
or
login
to post a comment