diff options
| author | Charles Cabergs <me@cacharle.xyz> | 2020-09-27 18:41:02 +0200 |
|---|---|---|
| committer | Charles Cabergs <me@cacharle.xyz> | 2020-09-27 18:41:02 +0200 |
| commit | 6382d2b7c1910f29556b740513421b57da9c5a97 (patch) | |
| tree | 4e79e4b13226cd1b288486e2819368c767e55259 /src/main.py | |
| parent | 51857521f770caae7b36e3a36a30d5b6986e66d1 (diff) | |
| download | philosophers_test-6382d2b7c1910f29556b740513421b57da9c5a97.tar.gz philosophers_test-6382d2b7c1910f29556b740513421b57da9c5a97.tar.bz2 philosophers_test-6382d2b7c1910f29556b740513421b57da9c5a97.zip | |
Added custom Exception with more descriptive error message
Diffstat (limited to 'src/main.py')
| -rwxr-xr-x | src/main.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.py b/src/main.py index dbe33ea..473fc9a 100755 --- a/src/main.py +++ b/src/main.py @@ -22,7 +22,6 @@ # [x] bad output format # [x] should be dead -import os import sys import subprocess import argparse @@ -55,5 +54,6 @@ def main(): Test.run_all(config.PHILO_EXEC_PATHS[0]) # print("yo") + if __name__ == "__main__": main() |
