Bugfixes in appyObj.dump and in master/slave relationships.

This commit is contained in:
Gaetan Delannay 2010-05-10 11:04:59 +02:00
parent 74d28a76c0
commit 309ea921fa
4 changed files with 14 additions and 8 deletions

View file

@ -91,7 +91,7 @@ def normalizeString(s, usage='fileName'):
elif not isinstance(s, unicode): s = unicode(s)
if usage == 'fileName':
# Remove any char that can't be found within a file name under
# Windows.
# Windows or that could lead to problems with OpenOffice.
res = ''
for char in s:
if char not in unwantedChars: