wrong escape sequence

This commit is contained in:
Florian Streibelt 2011-10-15 02:10:19 +02:00
parent d6e277fac4
commit 5124cf1d23
1 changed files with 2 additions and 2 deletions

View File

@ -199,7 +199,7 @@ class Status:
print(COLOR_MUCH + 'Bitte einloggen.' + COLOR_RESET)
print()
print('Scanne dazu deine ID-Karte mit dem Barcode-Leser.')
print_display("\e\x0cAnmeldung: Bitte ID-Karte scannen...")
print_display("\x0cAnmeldung: Bitte ID-Karte scannen\x0b")
print()
def logged_in(self):
@ -224,7 +224,7 @@ class Status:
try:
command.run(self.login_name)
except urllib2.HTTPError as e:
print_display('\e\x0cFEHLER: Server Error%20s' % str(e)[:20])
print_display('\x0cFEHLER: Server Error%20s' % str(e)[:20])
error_page('FEHLER bei Kommunikation mit Server "%s"' % str(e))
break
else: