From: <iwa...@us...> - 2003-08-06 00:58:05
|
Update of /cvsroot/quickrip/quickrip/gtk In directory sc8-pr-cvs1:/tmp/cvs-serv5763 Modified Files: gtkmain.py Log Message: gtkmain updated to work with new base. Just copy the base.py and place in the same directory. Then python gtkmain. Get some errors in scan dvd tho :| Index: gtkmain.py =================================================================== RCS file: /cvsroot/quickrip/quickrip/gtk/gtkmain.py,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** gtkmain.py 6 Aug 2003 00:33:48 -0000 1.11 --- gtkmain.py 6 Aug 2003 00:58:02 -0000 1.12 *************** *** 37,42 **** gnome.init("quickrip", "1.0") ! import dvd ! from dvd import * import config import gtkerrorbox --- 37,42 ---- gnome.init("quickrip", "1.0") ! import base ! from base import * import config import gtkerrorbox *************** *** 51,55 **** ! class GTKMain(DVD): def rip(self, widget, data=None): print "Rip" --- 51,55 ---- ! class GTKMain(QuickRip): def rip(self, widget, data=None): print "Rip" *************** *** 60,63 **** --- 60,66 ---- self.hideRip() self.hideScan() + + #wtf?? + self.langs = {} self.scanDVD() |