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
dex --test
**********************************************************************
File "/usr/bin/dex", line 389, in __main__.Application._build_cmd
Failed example:
Application._build_cmd('"gvim test" test2 "test \\" 3"')
Exception raised:
Traceback (most recent call last):
File "/usr/lib/python3.6/doctest.py", line 1330, in __run
compileflags, 1), test.globs)
File "<doctest __main__.Application._build_cmd[4]>", line 1, in<module>
Application._build_cmd('"gvim test" test2 "test \\" 3"')
File "/usr/bin/dex", line 501, in _build_cmd
raise ApplicationExecException('Exec value contains an unbalanced number of quote characters.')
ApplicationExecException: 'Exec value contains an unbalanced number of quote characters.'**********************************************************************
File "/usr/bin/dex", line 391, in __main__.Application._build_cmd
Failed example:
Application._build_cmd(r'"test \\\\ \" moin" test')
Exception raised:
Traceback (most recent call last):
File "/usr/lib/python3.6/doctest.py", line 1330, in __run
compileflags, 1), test.globs)
File "<doctest __main__.Application._build_cmd[5]>", line 1, in<module>
Application._build_cmd(r'"test \\\\ \" moin" test')
File "/usr/bin/dex", line 501, in _build_cmd
raise ApplicationExecException('Exec value contains an unbalanced number of quote characters.')
ApplicationExecException: 'Exec value contains an unbalanced number of quote characters.'**********************************************************************
File "/usr/bin/dex", line 393, in __main__.Application._build_cmd
Failed example:
Application._build_cmd(r'"gvim \\\\ \`test\$"')
Expected:
['gvim \\ `test$']
Got:
['gvim \\\\ \\`test\\$']
**********************************************************************
1 items had failures:
3 of 25 in __main__.Application._build_cmd
***Test Failed*** 3 failures.
The text was updated successfully, but these errors were encountered:
Not sure if it is related to the actual same failing tests or if this another not covered case
Exec=termite --exec "vim '\"yo\"'"
This is valid according to desktop-file-validate utility
but also raise the following error with dex 'Exec value contains an unbalanced number of quote characters.'
Using Python 3.6.6
tardypad
added a commit
to tardypad/dotfiles
that referenced
this issue
Jul 27, 2018
Those desktop files are valid according to desktop-file-validate
but dex reports a quoting issue
see jceb/dex#37
(not quoting the tmux command should be fined for those)
The text was updated successfully, but these errors were encountered: