Skip to content

Commit

Permalink
Fixed multiprocessing selection
Browse files Browse the repository at this point in the history
  • Loading branch information
Isaacdelly authored Feb 20, 2018
1 parent f064c27 commit 0a0f868
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plutus.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ def multi():

def main():
if (len(sys.argv) > 1):
if (sys.argv[1] == "-m" or "m"):
if (sys.argv[1] == "-m"):
print("\nMULTIPROCESSING MODE SELECTED\n")
multi()
else:
Expand Down

0 comments on commit 0a0f868

Please sign in to comment.