Entropy/Equo:

- fix print_menu() to work with unicode data


git-svn-id: http://svn.sabayonlinux.org/projects/entropy/trunk@2053 cd1c1023-2f26-0410-ae45-c471fc1f0318
This commit is contained in:
lxnay
2008-05-30 11:51:49 +00:00
parent cff759aa05
commit 17539fccbb
+2 -2
View File
@@ -276,14 +276,14 @@ def print_menu(data):
elif n_ident == 3:
myfunc = darkblue
myfunc_desc = purple
writechar(myfunc(name))
print myfunc(name),
# write desc
if desc:
while n_d_ident > 0:
n_d_ident -= 1
writechar("\t")
writechar(myfunc_desc(desc))
print myfunc_desc(desc),
writechar("\n")
def reset_cursor():