aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephen Fisher <steve@stephen-fisher.com>2011-11-03 15:38:29 +0000
committerStephen Fisher <steve@stephen-fisher.com>2011-11-03 15:38:29 +0000
commit3a2674599f5a3fa613f730794d1c362ac464926d (patch)
tree09ffe2fe9913986e2b11ef5e25c8bdc15098d21e
parent13c64c252409b0cd29db9c1110c112a740f6154e (diff)
Remove apparent debug code that causes these console messages on launch:
looking for dissectors in /usr/local/src/wireshark/epan/wspython/wspy_dissectors looking for dissectors in /home/sfisher/.wireshark/plugins registered protocols [] svn path=/trunk/; revision=39723
-rwxr-xr-xepan/wspython/register-dissector.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/epan/wspython/register-dissector.py b/epan/wspython/register-dissector.py
index a536a4ab95..613378e6ce 100755
--- a/epan/wspython/register-dissector.py
+++ b/epan/wspython/register-dissector.py
@@ -63,7 +63,6 @@ def register_dissectors(wspython_dir, plugins_pers_dir=None):
registered_protocols = []
for dissectors_dir in dissectors_dirs:
- print 'looking for dissectors in', dissectors_dir
#Check if we have the dissectors directory
if not os.path.isdir(dissectors_dir):
continue
@@ -84,7 +83,6 @@ def register_dissectors(wspython_dir, plugins_pers_dir=None):
registered_protocols.append(registered_protocol)
except Exception, e:
print 'register dissector %s exception %s' % (dissector, e)
- print 'registered protocols', registered_protocols
return registered_protocols
if False: