Update of /cvsroot/happydoc/HappyDoc
In directory usw-pr-cvs1:/tmp/cvs-serv24347
Modified Files:
happydoc
Log Message:
Call setlocale() on startup so that string.letters is properly initialized.
Index: happydoc
===================================================================
RCS file: /cvsroot/happydoc/HappyDoc/happydoc,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** happydoc 27 Oct 2001 19:58:37 -0000 1.7
--- happydoc 25 Aug 2002 18:33:19 -0000 1.8
***************
*** 55,58 ****
--- 55,61 ----
__version__ = '0.0'
+ import locale
+ locale.setlocale(locale.LC_ALL, '')
+
from happydoclib import HappyDoc
|