Merge pull request #1527 from aanand/remove-logging-on-run-rm

Remove logging on run --rm
This commit is contained in:
Daniel Nephin 2015-06-08 16:21:02 -04:00
commit 5578ccbb01
1 changed files with 0 additions and 1 deletions

View File

@ -349,7 +349,6 @@ class TopLevelCommand(Command):
dockerpty.start(project.client, container.id, interactive=not options['-T'])
exit_code = container.wait()
if options['--rm']:
log.info("Removing %s..." % container.name)
project.client.remove_container(container.id)
sys.exit(exit_code)