Comet designations can have '/', which is not good for file names. I have edited the code to use the translate function with a single variable that is defined in _pp_conf.py. It translates '/' and ' ' to '_'. This way, if you'd like to translate other characters (maybe parentheses?), only this one file needs to be edited. Please verify that I have replaced all of the correct replace() calls with translate().
Comet designations can have '/', which is not good for file names. I have edited the code to use the translate function with a single variable that is defined in
_pp_conf.py
. It translates '/' and ' ' to '_'. This way, if you'd like to translate other characters (maybe parentheses?), only this one file needs to be edited. Please verify that I have replaced all of the correctreplace()
calls withtranslate()
.