Steve Kieu
8 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
src/xdgmenumaker
|
@ -560,7 +560,7 @@ def fluxbox(): |
|
|
for app in menu_category.applist: |
|
|
for app in menu_category.applist: |
|
|
# closing parentheses need to be escaped, otherwise they are |
|
|
# closing parentheses need to be escaped, otherwise they are |
|
|
# cropped out, along with everything that comes after them |
|
|
# cropped out, along with everything that comes after them |
|
|
name = app.name.decode().replace(')', '\)') |
|
|
name = app.name.decode().replace(')', r'\)') |
|
|
icon = app.icon |
|
|
icon = app.icon |
|
|
command = app.command |
|
|
command = app.command |
|
|
path = app.path |
|
|
path = app.path |
|
|