Commit e4ae87b3 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 e4d044dd
......@@ -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