Closed sunshine69 closed 6 months ago
Ubuntu 24.04 python 3.12.3
xdgmenumaker -n -i -f jwm /usr/local/bin/xdgmenumaker:563: SyntaxWarning: invalid escape sequence ')' name = app.name.decode().replace(')', ')')
Looks ike this python version it thinks the \ is the escape char even string quote using '
I just put the r into it and it is quiet. Trying to make a PR but somehow does not see the fork button .
soemthing like this on line 563
name = app.name.decode().replace(')', r'\)')
Just see the fork button - PR created
PR merged, thanks!
Ubuntu 24.04 python 3.12.3
xdgmenumaker -n -i -f jwm /usr/local/bin/xdgmenumaker:563: SyntaxWarning: invalid escape sequence ')' name = app.name.decode().replace(')', ')')
Looks ike this python version it thinks the \ is the escape char even string quote using '
I just put the r into it and it is quiet. Trying to make a PR but somehow does not see the fork button .
soemthing like this on line 563