/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/workingtree.py

  • Committer: Gerard Krol
  • Date: 2010-02-05 17:40:52 UTC
  • mto: (5020.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 5021.
  • Revision ID: gerard_@gna.org-20100205174052-pmnaqzspqvwhe95b
Remove an unused local variable that was still lingering

Show diffs side-by-side

added added

removed removed

Lines of Context:
2267
2267
        except IndexError:
2268
2268
            last_rev = _mod_revision.NULL_REVISION
2269
2269
        if revision is None:
2270
 
            update_dash_r = False
2271
2270
            revision = self.branch.last_revision()
2272
2271
        else:
2273
 
            update_dash_r = True
2274
2272
            if revision not in self.branch.revision_history():
2275
2273
                raise errors.NoSuchRevision(self.branch, revision)
2276
2274