except: -> except Exception:

This commit is contained in:
Yann Leboulanger 2009-05-07 11:30:46 +00:00
parent f9157df2fb
commit 23c6c708cd
1 changed files with 1 additions and 1 deletions

View File

@ -154,7 +154,7 @@ try:
except ImportError:
try:
import pybonjour
except: # Linux raises ImportError, Windows raises WindowsError
except Exception: # Linux raises ImportError, Windows raises WindowsError
HAVE_ZEROCONF = False
HAVE_PYCRYPTO = True