summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgbrandl <devnull@localhost>2007-02-14 18:26:19 +0100
committergbrandl <devnull@localhost>2007-02-14 18:26:19 +0100
commitaf020e969dfdbb6833887e0a088e245e5032f26a (patch)
tree5502979787817053427d113101eb0f8e7693d503
parentead01a06e3a748d49a2a487c122ab61b0f98ccb6 (diff)
downloadpygments-af020e969dfdbb6833887e0a088e245e5032f26a.tar.gz
[svn] Remove debug print.
-rw-r--r--pygments/filters/__init__.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/pygments/filters/__init__.py b/pygments/filters/__init__.py
index 375a638e..f1f994eb 100644
--- a/pygments/filters/__init__.py
+++ b/pygments/filters/__init__.py
@@ -133,7 +133,6 @@ class NameHighlightFilter(Filter):
def __init__(self, **options):
Filter.__init__(self, **options)
self.names = set(get_list_opt(options, 'names', []))
- print "!!!!!!", self.names
tokentype = options.get('tokentype')
if tokentype:
self.tokentype = string_to_tokentype(tokentype)