Changeset 1314 in tailor
- Timestamp:
- 01/14/07 12:22:31 (6 years ago)
- Hash name:
- 20070114112231-97f81-2407757c39ee19926be82e06bd23ffe5b533da4a
- Location:
- vcpx
- Files:
-
- 2 edited
-
tests/darcs.py (modified) (1 diff)
-
repository/darcs/source.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
vcpx/tests/darcs.py
r1313 r1314 73 73 changes = ExternalCommand(command=["darcs", "changes", "--xml", "--summary", 74 74 "--patches", patchname]) 75 csets = changesets_from_darcschanges(changes.execute(stdout=PIPE )[0],75 csets = changesets_from_darcschanges(changes.execute(stdout=PIPE, TZ='UTC')[0], 76 76 unidiff=True, 77 77 repodir=getcwd()) 78 78 unidiff = csets.next().unidiff 79 79 head = unidiff.split('\n')[0] 80 self.assertEqual(head, 'Thu Jun 9 2 2:17:11 CEST2005 zooko@zooko.com')80 self.assertEqual(head, 'Thu Jun 9 20:17:11 UTC 2005 zooko@zooko.com') 81 81 82 82 def testAllActions(self): -
vcpx/repository/darcs/source.py
r1311 r1314 207 207 cset.darcs_hash = self.current['hash'] 208 208 if self.darcsdiff: 209 cset.unidiff = self.darcsdiff.execute( 209 cset.unidiff = self.darcsdiff.execute(TZ='UTC', 210 210 stdout=PIPE, patchname=cset.revision)[0].read() 211 211
Note: See TracChangeset
for help on using the changeset viewer.
