summaryrefslogtreecommitdiff
path: root/alot/walker.py
diff options
context:
space:
mode:
Diffstat (limited to 'alot/walker.py')
-rw-r--r--alot/walker.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/alot/walker.py b/alot/walker.py
index 768485fe..ba2b2fe4 100644
--- a/alot/walker.py
+++ b/alot/walker.py
@@ -17,6 +17,7 @@ along with notmuch. If not, see <http://www.gnu.org/licenses/>.
Copyright (C) 2011 Patrick Totzke <patricktotzke@gmail.com>
"""
import urwid
+import logging
class PipeWalker(urwid.ListWalker):
@@ -75,6 +76,7 @@ class PipeWalker(urwid.ListWalker):
next_widget = self.containerclass(next_obj, **self.kwargs)
self.lines.append(next_widget)
except EOFError:
+ logging.debug('EMPTY PIPE')
next_widget = None
self.empty = True
return next_widget