Upstream-commit: 424cc678ebac93c69c288fcdbc2e1a4bd0493328
Component: engine
This commit is contained in:
Barry Allard
2013-05-04 21:20:41 -07:00
parent a849d540bf
commit cbd0ae7b4d

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