--- gcalcli.orig 2008-07-06 12:29:27.000000000 +0800
+++ gcalcli 2008-07-06 12:31:38.000000000 +0800
@@ -195,25 +195,25 @@
def PrintErrMsg(msg):
if CLR.useColor:
sys.stdout.write(str(CLR_BRRED()))
- sys.stdout.write(msg)
+ sys.stdout.write(unicode(msg, 'UTF-8'))
sys.stdout.write(str(CLR_NRM()))
else:
- sys.stdout.write(msg)
+ sys.stdout.write(unicode(msg, 'UTF-8'))
def PrintMsg(color, msg):
if CLR.useColor:
sys.stdout.write(str(color))
- sys.stdout.write(msg)
+ sys.stdout.write(unicode(msg, 'UTF-8'))
sys.stdout.write(str(CLR_NRM()))
else:
- sys.stdout.write(msg)
+ sys.stdout.write(unicode(msg, 'UTF-8'))
def DebugPrint(msg):
return
sys.stdout.write(str(CLR_YLW()))
- sys.stdout.write(msg)
+ sys.stdout.write(unicode(msg, 'UTF-8'))
sys.stdout.write(str(CLR_NRM()))
='/~lantw44/cgit/cgit.cgi/'>
index : freebsd-ports-gnome | |
FreeBSD GNOME current development ports (https://github.com/freebsd/freebsd-ports-gnome) | |
| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
| |
- Add DOCS option and install documentation in standard location
- Silence post-patch
|