summaryrefslogtreecommitdiffstats
path: root/forum/search/state_manager.py
diff options
context:
space:
mode:
Diffstat (limited to 'forum/search/state_manager.py')
-rw-r--r--forum/search/state_manager.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/forum/search/state_manager.py b/forum/search/state_manager.py
index 4b3772b6..8a66deb3 100644
--- a/forum/search/state_manager.py
+++ b/forum/search/state_manager.py
@@ -15,7 +15,6 @@ class SearchState(object):
self.page = 1
self.logged_in = False
logging.debug('new search state initialized')
- print 'new search state'
def __str__(self):
out = 'scope=%s\n' % self.scope
@@ -77,10 +76,7 @@ class SearchState(object):
if 'tags' in input:
if self.tags:
old_tags = self.tags.copy()
- print 'old tags %s' % str(old_tags)
- print 'new tags %s' % str(input['tags'])
self.tags = self.tags.union(input['tags'])
- print 'combined %s' % str(self.tags)
if self.tags != old_tags:
self.reset_page()
else: