desktop-packages team mailing list archive
-
desktop-packages team
-
Mailing list archive
-
Message #61358
[Bug 910278] [NEW] quotation marks on jocky/ui.py:121-124 are wrong
You have been subscribed to a public bug:
I think the following codes on jocky/ui.py:121-124 are wrong.
Actual code:
----
self.error_message(self._('Cannot connect to D-BUS,"+\
" please use the --no-dbus option as root to"+\
" use jockey without it.'),
str(e))
----
This code will print the following sentence:
----
Cannot connect to D-BUS,"+ " please use the --no-dbus option as root to"+ " use jockey without it.
----
Expected result is the following sentence:
----
Cannot connect to D-BUS, please use the --no-dbus option as root to use jockey without it.
----
Expected code:
----
self.error_message(self._('Cannot connect to D-BUS,'+\
' please use the --no-dbus option as root to'+\
' use jockey without it.'),
str(e))
----
** Affects: jockey (Ubuntu)
Importance: Undecided
Assignee: Martin Pitt (pitti)
Status: Fix Committed
--
quotation marks on jocky/ui.py:121-124 are wrong
https://bugs.launchpad.net/bugs/910278
You received this bug notification because you are a member of Desktop Packages, which is subscribed to jockey in Ubuntu.