Browse Source

Another oops

master
Julio Biason 16 years ago
parent
commit
1c7df31866
  1. 4
      mitterlib/ui/ui_zork.py

4
mitterlib/ui/ui_zork.py

@ -55,8 +55,10 @@ class Interface(cmd.Cmd):
except NetworksNoNetworkSetupError: except NetworksNoNetworkSetupError:
# call the config # call the config
self.do_config() self.do_config()
return
except NetworkError: except NetworkError:
print 'Network failure. Try again in a few minutes.' print 'Network failure. Try again in a few minutes.'
return
data.reverse() data.reverse()
self._messages.extend(data) self._messages.extend(data)
@ -84,7 +86,7 @@ class Interface(cmd.Cmd):
print 'You are in the top of the list.' print 'You are in the top of the list.'
print print
return return
self.cursor -= 1 self._cursor -= 1
else: else:
print 'Display WHAT?' print 'Display WHAT?'
print '("current", "previous" or "next")' print '("current", "previous" or "next")'

Loading…
Cancel
Save