mirror of
https://github.com/docker/docs.git
synced 2026-03-27 22:38:54 +07:00
closes #522
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user