Remove unnecessary print statements

This commit is contained in:
Chris Jones 2010-01-18 20:40:52 +00:00
parent 3f214bf686
commit e6ad61831d
1 changed files with 0 additions and 4 deletions

View File

@ -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):