Merge pull request #215 from marksteve/docker-0.11

Docker 0.11
This commit is contained in:
Ben Firshman 2014-05-08 10:10:19 +01:00
commit c3c8395cef
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ class Container(object):
def human_readable_state(self):
self.inspect_if_not_inspected()
if self.dictionary['State']['Running']:
if self.dictionary['State']['Ghost']:
if self.dictionary['State'].get('Ghost'):
return 'Ghost'
else:
return 'Up'