[Bug 462950] [NEW] todiscgui fails to launch todisc

Nigel Cundy nigel.cundy at physik.uni-regensburg.de
Wed Oct 28 22:26:43 UTC 2009


Public bug reported:

Binary package hint: todiscgui

Karmic, latest updates as of 28 October,

dpkg -l todiscgui
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Cfg-files/Unpacked/Failed-cfg/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name                                 Version                              Description
+++-====================================-====================================-========================================================================================
ii  todiscgui                            0.31-0ubuntu5                        tools for creating video DVDs, VCDs, and SVCDs - todisc GUI


When you use todiscgui , add the video files etc. nothing happens when you click on "run todisc" It should run the todisc utility.

I managed to fix this problem by altering /usr/lib/python2.6/lib-
tk/tkMessageBox.py , adding the penultimate line to the code segment
below:


def _show(title=None, message=None, _icon=None, _type=None, **options):
    if _icon and "icon" not in options:    options["icon"] = _icon
    if _type and "type" not in options:    options["type"] = _type
    if title:   options["title"] = title
    if message: options["message"] = message
    res = Message(**options).show()
    # In some Tcl installations, Tcl converts yes/no into a boolean
    if isinstance(res, bool):
        if res: return YES
        return NO
    # This next line is the bugfix for todiscgui
    res = str(res)
    return res

** Affects: tovid (Ubuntu)
     Importance: Undecided
         Status: New

-- 
todiscgui fails to launch todisc
https://bugs.launchpad.net/bugs/462950
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs at lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs




More information about the universe-bugs mailing list