equal
deleted
inserted
replaced
1996 followfirst = 1 |
1996 followfirst = 1 |
1997 else: |
1997 else: |
1998 followfirst = 0 |
1998 followfirst = 0 |
1999 # --follow with FILE behavior depends on revs... |
1999 # --follow with FILE behavior depends on revs... |
2000 it = iter(revs) |
2000 it = iter(revs) |
2001 startrev = it.next() |
2001 startrev = next(it) |
2002 followdescendants = startrev < next(it, startrev) |
2002 followdescendants = startrev < next(it, startrev) |
2003 |
2003 |
2004 # branch and only_branch are really aliases and must be handled at |
2004 # branch and only_branch are really aliases and must be handled at |
2005 # the same time |
2005 # the same time |
2006 opts['branch'] = opts.get('branch', []) + opts.get('only_branch', []) |
2006 opts['branch'] = opts.get('branch', []) + opts.get('only_branch', []) |