Closed GoogleCodeExporter closed 8 years ago
Phoshare 1.4.2 had a bug (at least that's what I call it) where it replaced
underscores in filenames with spaces as part of the processing that generates a
valid filename. Some characters aren't allowed in filenames, so Phoshare cleans
them up during the export. Underscores are perfectly valid in file names, so
they shoud not be replaced.
This has indeed the undesired side effect of recreating all your images after
an upgrade if you use underscores in image titles. I don't know of any way
around this. You can of course change the code in Phoshare yourself. The change
is in the file
Phoshare.app/Contents/Resources/lib/python2.7/tilutil/imageutils.py:
95c133
< if c.isalnum() or c.isspace():
---
> if c.isalnum() or c.isspace() or c == '_':
Original comment by tsporkert
on 17 Jul 2011 at 11:39
Original issue reported on code.google.com by
thomas.v...@gmail.com
on 17 Jul 2011 at 8:02