Changeset 1576 in tailor for vcpx/repository/darcs/source.py
- Timestamp:
- 05/29/08 23:51:35 (5 years ago)
- Hash name:
- 20080529215135-97f81-4940d2e955fe9afb33b07de4d655f98145891bec
- File:
-
- 1 edited
-
vcpx/repository/darcs/source.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
vcpx/repository/darcs/source.py
r1575 r1576 512 512 line = output.readline() 513 513 514 # Complete the changeset with its entries 515 514 516 cmd = self.repository.command("changes", selector, revtag, 515 517 "--xml-output", "--summ") … … 518 520 replace_badchars=self.repository.replace_badchars) 519 521 try: 520 changeset.entries.extend(last.next().entries)522 entries = last.next().entries 521 523 except StopIteration: 522 pass 524 entries = None 525 526 if entries: 527 for e in entries: 528 changeset.addEntry(e, changeset.revision) 523 529 524 530 return conflicts
Note: See TracChangeset
for help on using the changeset viewer.
