From 75c57abd6bdc86a2425d15013128e800c57ced7a Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Tue, 8 Feb 2011 01:32:09 -0800 Subject: portage.debug: handle threading ImportError --- pym/portage/debug.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'pym') 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 -- cgit v1.2.3-1-g7c22