summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pym/portage/debug.py10
1 files changed, 8 insertions, 2 deletions
diff --git a/pym/portage/debug.py b/pym/portage/debug.py
index e18d02cf7..ce642fef6 100644
--- a/pym/portage/debug.py
+++ b/pym/portage/debug.py
@@ -1,7 +1,13 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-import os, sys, threading
+import os
+import sys
+
+try:
+ import threading
+except ImportError:
+ import dummy_threading as threading
import portage.const
from portage.util import writemsg