diff options
Diffstat (limited to 'examples2/semaphore.py')
-rwxr-xr-x | examples2/semaphore.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples2/semaphore.py b/examples2/semaphore.py index 9aaf6d5..6a16347 100755 --- a/examples2/semaphore.py +++ b/examples2/semaphore.py @@ -7,12 +7,12 @@ import sys # Check if thread support was enabled. try: - from qt import TQThread + from python_tqt.qt import TQThread except: print "Thread support not enabled" sys.exit(1) -from qt import * +from python_tqt.qt import * # The semaphore instances. |