From e6ad61831d2cab76cea4872eb41cb06b39d39187 Mon Sep 17 00:00:00 2001 From: Chris Jones Date: Mon, 18 Jan 2010 20:40:52 +0000 Subject: [PATCH] Remove unnecessary print statements --- terminatorlib/terminator.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/terminatorlib/terminator.py b/terminatorlib/terminator.py index 82c23190..b0de2726 100755 --- a/terminatorlib/terminator.py +++ b/terminatorlib/terminator.py @@ -114,9 +114,6 @@ class Terminator(Borg): if length <= 1: return - print "Current term: %d" % current - print "Number of terms: %d" % length - if direction == 'next': next = current + 1 if next >= length: @@ -130,7 +127,6 @@ class Terminator(Borg): # FIXME: Do the directional navigation if next is not None: - print "sending focus to term %d" % next self.terminals[next].grab_focus() def create_group(self, name):