diff options
Diffstat (limited to 'Mac/Tools/twit/twit.py')
| -rw-r--r-- | Mac/Tools/twit/twit.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Mac/Tools/twit/twit.py b/Mac/Tools/twit/twit.py index 9db908e..6c6bad4 100644 --- a/Mac/Tools/twit/twit.py +++ b/Mac/Tools/twit/twit.py @@ -11,6 +11,13 @@ main program: nothing but a bit of glue to put it all together. Jack Jansen, CWI, August 1996.""" import os +import sys + +# Add our directory to path, if needed +dirname = os.path.split(__file__)[0] +if not dirname in sys.path: + sys.path.append(dirname) + if os.name == 'mac': import MacOS MacOS.splash(515) # Try to show the splash screen |
