This commit is contained in:
shin- 2013-06-21 19:56:54 +02:00
commit 3ffef6dd04
2 changed files with 3 additions and 3 deletions

View File

@ -1 +1 @@
from client import Client
from .client import Client

View File

@ -355,9 +355,9 @@ class BuilderClient(object):
self.config['Image'] = self.image
if id is None:
cmd = self.config['Cmd']
self.config.Cmd = ['true']
self.config['Cmd'] = ['true']
id = self.run()
self.config.Cmd = cmd
self.config['Cmd'] = cmd
res = self.client.commit(id, author=self.maintainer)
if 'Id' not in res: