summaryrefslogtreecommitdiff
path: root/alot/completion.py
diff options
context:
space:
mode:
authorPatrick Totzke <patricktotzke@gmail.com>2012-09-01 16:40:01 +0100
committerPatrick Totzke <patricktotzke@gmail.com>2012-09-03 22:14:09 +0100
commit18a42f6fdab751834699158dc16f6759b0a2d4db (patch)
treee89aea5521e5290a35babc4eabd3d8766b89eee3 /alot/completion.py
parentcabdf4c2d1b9c8dbc49b4064335ca1e811641d4f (diff)
remove debug statements from Completer
Diffstat (limited to 'alot/completion.py')
-rw-r--r--alot/completion.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/alot/completion.py b/alot/completion.py
index 29af9d84..29fd368c 100644
--- a/alot/completion.py
+++ b/alot/completion.py
@@ -453,7 +453,6 @@ class CommandLineCompleter(Completer):
res = []
for ccmd, ccpos in self._commandcompleter.complete(cmdstring, cpos):
- logging.debug((before, cmdstring, after, ccmd))
newtext = before + ccmd + after
newpos = pos + (ccpos - cpos)
res.append((newtext, newpos))