__date__ = "$Date$"[7:-2]
__author__ = "Oleg BroytMann <phd@phd.pp.ru>"
-__copyright__ = "Copyright (C) 2004-2006 PhiloSoft Design"
+__copyright__ = "Copyright (C) 2004-2007 PhiloSoft Design"
__license__ = "GNU GPL"
filename = global_db[key]
global_db.close()
+from m_lib.defenc import default_encoding
+filename = unicode(filename, default_encoding)
if width:
lines = []
while filename:
lines.append("%s%s%s" % (spaces, filename[:width], spaces))
filename = filename[width:]
- filename = "\n".join(lines)
+ filename = u'\n'.join(lines)
else:
- filename = "%s%s%s" % (spaces, filename, spaces)
+ filename = u"%s%s%s" % (spaces, filename, spaces)
-
-sys.stdout.write(filename)
+sys.stdout.write(filename.encode(default_encoding))
if print0:
sys.stdout.write('\0')