Comment 5 for bug 333223

Revision history for this message
GEM (nimp3) wrote :

problem with the code that I have given, the server postgres don't start when I restart windows.
Everybody must use the solution given by Paulino :

Open addons/document/document.py, find function random_name() replace "string.letters" with "string.ascii_letters"

string.letters's output depends on the platform. On Linux string.letters is the same as string.ascii_letters, but not on WinXP.
A+