diff -r 61d5d47755f0 -r bcc10ef7015d DebugClients/Python/DebugClientBase.py --- a/DebugClients/Python/DebugClientBase.py Sat Jun 29 17:32:25 2013 +0200 +++ b/DebugClients/Python/DebugClientBase.py Sat Jun 29 18:40:45 2013 +0200 @@ -1193,6 +1193,11 @@ if afn.startswith(d): return 1 + # special treatment for paths containing site-packages or dist-packages + for part in ["site-packages", "dist-packages"]: + if part in afn: + return 1 + return 0 def getRunning(self):