/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/menu.py

  • Committer: Szilveszter Farkas (Phanatic)
  • Date: 2006-09-28 14:40:06 UTC
  • mto: (93.1.1 win32.bialix)
  • mto: This revision was merged to the branch mainline in revision 103.
  • Revision ID: Szilveszter.Farkas@gmail.com-20060928144006-5b3001d2a587fc5a
Fix init error. Added .bzrignore.

Show diffs side-by-side

added added

removed removed

Lines of Context:
143
143
            return
144
144
        
145
145
        try:
146
 
            bzrlib.add.smart_add([directory + '/' + filename])
 
146
            bzrlib.add.smart_add([directory + os.sep + filename])
147
147
        except errors.NotBranchError:
148
148
            self.dialog.error_dialog(_('Directory is not a branch'),
149
149
                                     _('You can perform this action only in a branch.'))
163
163
            return
164
164
        
165
165
        try:
166
 
            wt, path = WorkingTree.open_containing(directory+'/'+filename)
 
166
            wt, path = WorkingTree.open_containing(directory + os.sep + filename)
167
167
            wt.remove(path)
168
168
 
169
169
        except errors.NotBranchError: