comparison hgext/rebase.py @ 7875:553aa0cbeab6

cleanup: drop unused assignments
author Peter Arrenbrecht <peter.arrenbrecht@gmail.com>
date Mon, 23 Mar 2009 13:13:06 +0100
parents 92455c1d6f83
children eba7f12b0c51
comparison
equal deleted inserted replaced
7874:d812029cda85 7875:553aa0cbeab6
335 clearstatus(repo) 335 clearstatus(repo)
336 repo.ui.status(_('rebase aborted\n')) 336 repo.ui.status(_('rebase aborted\n'))
337 337
338 def buildstate(repo, dest, src, base, collapse): 338 def buildstate(repo, dest, src, base, collapse):
339 'Define which revisions are going to be rebased and where' 339 'Define which revisions are going to be rebased and where'
340 state = {}
341 targetancestors = util.set() 340 targetancestors = util.set()
342 341
343 if not dest: 342 if not dest:
344 # Destination defaults to the latest revision in the current branch 343 # Destination defaults to the latest revision in the current branch
345 branch = repo[None].branch() 344 branch = repo[None].branch()