Skip to content

Commit

Permalink
fix success message on container clone
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian Glatthard committed Aug 11, 2015
1 parent 4c4e274 commit e2c9f09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ipynbsrv/web/views/containers.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def clone(request):
# create clone
try:
client.containers(ct_id).clone.post(params)
messages.success(request, "Sucessfully created the clone `{}`.".format(name))
messages.success(request, "Sucessfully created the clone `{}`.".format(params.get('name']))
except Exception as e:
messages.error(request, api_error_message(e, params))

Expand Down

0 comments on commit e2c9f09

Please sign in to comment.