You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
properties has unnecessary "\" before ":", for example: hats_creation_date=2025-01-24T16\:01UTC. I guess it is because jproperties overthinking the escaping, which is not really required for values, from Java properties docs:
The key contains all of the characters in the line starting with the first non-white space character and up to, but not including, the first unescaped '=', ':', or white space character other than a line terminator.
jproperies package allows turning escaping off with p = Properties(process_escapes_in_values=False), see the relevant discussion here: Tblue/python-jproperties#3
[ ] I have described the situation in which the bug arose, including what code was executed, information about my environment, and any applicable data others will need to reproduce the problem.
I have included available evidence of the unexpected behavior (including error messages, screenshots, and/or plots) as well as a description of what I expected instead.
If I have a solution in mind, I have provided an explanation and/or pseudocode and/or task list.
The text was updated successfully, but these errors were encountered:
Bug report
properties
has unnecessary "\" before ":", for example:hats_creation_date=2025-01-24T16\:01UTC
. I guess it is because jproperties overthinking the escaping, which is not really required for values, from Java properties docs:jproperies
package allows turning escaping off withp = Properties(process_escapes_in_values=False)
, see the relevant discussion here:Tblue/python-jproperties#3
HiPS specification doesn't suggest escaping ":", the example it gives:
Before submitting
Please check the following:
The text was updated successfully, but these errors were encountered: