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

  • Committer: Szilveszter Farkas (Phanatic)
  • Date: 2006-09-30 13:04:15 UTC
  • mto: (0.14.3 main)
  • mto: This revision was merged to the branch mainline in revision 86.
  • Revision ID: Szilveszter.Farkas@gmail.com-20060930130415-aba4100709e11f0a
Loads of fixes. Pyflakes cleanup.

Show diffs side-by-side

added added

removed removed

Lines of Context:
66
66
                             _('Please select a file from the list,\nor choose the other option.'))
67
67
                return
68
68
            
69
 
            if self.wtpath == "":
70
 
                fullpath = self.wt.abspath(filename)
71
 
            else:
72
 
                fullpath = self.wt.abspath(self.wtpath + os.sep + filename)
 
69
            fullpath = self.wt.abspath(os.path.join(self.wtpath, filename))
73
70
            
74
71
            try:
75
72
                self.wt.remove(fullpath)