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:
commit
6ac33eb649
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue