Remove unnecessary print statements
This commit is contained in:
parent
3f214bf686
commit
e6ad61831d
|
@ -114,9 +114,6 @@ class Terminator(Borg):
|
||||||
if length <= 1:
|
if length <= 1:
|
||||||
return
|
return
|
||||||
|
|
||||||
print "Current term: %d" % current
|
|
||||||
print "Number of terms: %d" % length
|
|
||||||
|
|
||||||
if direction == 'next':
|
if direction == 'next':
|
||||||
next = current + 1
|
next = current + 1
|
||||||
if next >= length:
|
if next >= length:
|
||||||
|
@ -130,7 +127,6 @@ class Terminator(Borg):
|
||||||
# FIXME: Do the directional navigation
|
# FIXME: Do the directional navigation
|
||||||
|
|
||||||
if next is not None:
|
if next is not None:
|
||||||
print "sending focus to term %d" % next
|
|
||||||
self.terminals[next].grab_focus()
|
self.terminals[next].grab_focus()
|
||||||
|
|
||||||
def create_group(self, name):
|
def create_group(self, name):
|
||||||
|
|
Loading…
Reference in New Issue