summaryrefslogtreecommitdiff
path: root/tests/transactions
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-01-28 09:55:52 -0500
committerTim Graham <timograham@gmail.com>2015-01-28 10:23:25 -0500
commit18f3e79b13947de0bda7c985916d5a04e28936dc (patch)
treee944eb683d966d8523ffebd99b5b9fabd5591474 /tests/transactions
parentcd91486213b6c3d9e0a2e6e329fffc8aff40f183 (diff)
Removed threading fallback imports.
Django imports threading in many other places without fallback.
Diffstat (limited to 'tests/transactions')
-rw-r--r--tests/transactions/tests.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/transactions/tests.py b/tests/transactions/tests.py
index 005df0ba91..bf4735e0d2 100644
--- a/tests/transactions/tests.py
+++ b/tests/transactions/tests.py
@@ -1,10 +1,7 @@
from __future__ import unicode_literals
import sys
-try:
- import threading
-except ImportError:
- threading = None
+import threading
import time
from unittest import skipIf, skipUnless