1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #523 from steakknife/522-docker-build

* Builder: use any whitespaces instead of tabs
This commit is contained in:
Guillaume J. Charmes 2013-05-06 19:06:11 -07:00
commit 6ac33eb649

View file

@ -89,7 +89,7 @@ def main():
# Skip comments and empty lines
if line == "" or line[0] == "#":
continue
op, param = line.split(" ", 1)
op, param = line.split(None, 1)
print op.upper() + " " + param
if op == "from":
base = param