/b-gtk/fix-viz

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/b-gtk/fix-viz

« back to all changes in this revision

Viewing changes to olive/checkout.py

  • Committer: Aaron Bentley
  • Date: 2007-01-17 06:42:55 UTC
  • mto: This revision was merged to the branch mainline in revision 129.
  • Revision ID: aaron.bentley@utoronto.ca-20070117064255-x4gznz5e0lyjq3gk
Remove usused span selector

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
import bzrlib.errors as errors
31
31
import bzrlib.osutils
32
32
 
33
 
from olive import gladefile
34
33
from dialog import error_dialog
 
34
from guifiles import GLADEFILENAME
 
35
 
35
36
 
36
37
class OliveCheckout:
37
38
    """ Display checkout dialog and perform the needed operations. """
38
39
    def __init__(self, path=None):
39
40
        """ Initialize the Checkout dialog. """
40
 
        self.glade = gtk.glade.XML(gladefile, 'window_checkout', 'olive-gtk')
 
41
        self.glade = gtk.glade.XML(GLADEFILENAME, 'window_checkout', 'olive-gtk')
41
42
        
42
43
        self.window = self.glade.get_widget('window_checkout')
43
44