Commit 6b650b18 authored by Jodok Batlogg's avatar Jodok Batlogg

the main method call needs to be lowercase, otherwise the call will raise a...

the main method call needs to be lowercase, otherwise the call will raise a TypeError: Main() takes no arguments (2 given)
parent 2a98a246
......@@ -46,7 +46,7 @@ def Main():
for k, v in opts:
if k == '-n':
ntxn = int(v)
Main(path, ntxn)
main(path, ntxn)
if __name__ == "__main__":
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment