From 14f9f53bcaa8251ef1bde9547f5b10d55fd61d8a Mon Sep 17 00:00:00 2001 From: Charles Haley <> Date: Tue, 22 Feb 2011 17:45:37 +0000 Subject: [PATCH] Remove a print statement --- src/calibre/library/caches.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/calibre/library/caches.py b/src/calibre/library/caches.py index 4f0e3f8d8b..318183eb10 100644 --- a/src/calibre/library/caches.py +++ b/src/calibre/library/caches.py @@ -128,7 +128,6 @@ def _match(query, value, matchkind): if query[0] == '.': if t.startswith(query[1:]): ql = len(query) - 1 - print ql, t, query return (len(t) == ql) or (t[ql:ql+1] == '.') elif query == t: return True