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
This commit is contained in:
Stephen Fisher 2011-11-03 15:38:29 +00:00
parent 13c64c2524
commit 3a2674599f
1 changed files with 0 additions and 2 deletions

View File

@ -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: