Merge pull request #110 from machinexa2/patch-2

small fixes
This commit is contained in:
Michael Skelton
2020-08-30 14:55:07 +10:00
committed by GitHub

View File

@@ -1,6 +1,6 @@
#!/usr/bin/python3
import sys
from sys import argv
from Interlace.lib.core.input import InputParser, InputHelper
from Interlace.lib.core.output import OutputHelper, Level
@@ -18,7 +18,7 @@ def build_queue(arguments, output, repeat):
def main():
parser = InputParser()
arguments = parser.parse(sys.argv[1:])
arguments = parser.parse(argv[1:])
output = OutputHelper(arguments)
output.print_banner()