empty line before command output

This commit is contained in:
David Vierra 2010-09-19 13:43:47 -10:00
parent 69c29a08a8
commit 18435c3b7a

1
mce.py
View File

@ -579,6 +579,7 @@ class mce(object):
try: try:
command = raw_input("{0}> ".format(self.shortWorld)) command = raw_input("{0}> ".format(self.shortWorld))
if len(command) == 0: continue if len(command) == 0: continue
print
commandWords = command.split() commandWords = command.split()
self.processCommand(commandWords) self.processCommand(commandWords)