Changeset 1007 in tailor
- Timestamp:
- 11/17/05 02:55:08 (8 years ago)
- Hash name:
- 20051117015508-97f81-5ab2f632cda4b13e82fe8ca061119bf253bff558
- Location:
- vcpx
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
vcpx/cvsps.py
r1002 r1007 164 164 cvsps=True) 165 165 cvsps = ExternalCommand(command=cmd) 166 log = cvsps.execute(self.repository.module, stdout=PIPE, TZ='UTC ')[0]166 log = cvsps.execute(self.repository.module, stdout=PIPE, TZ='UTC0')[0] 167 167 168 168 for cs in changesets_from_cvsps(log, sincerev): -
vcpx/darcs.py
r992 r1007 179 179 pull = ExternalCommand(cwd=self.basedir, command=cmd) 180 180 output = pull.execute(self.repository.repository, 181 stdout=PIPE, stderr=STDOUT, TZ='UTC ')[0]181 stdout=PIPE, stderr=STDOUT, TZ='UTC0')[0] 182 182 183 183 if pull.exit_status: -
vcpx/svn.py
r991 r1007 213 213 "--revision", "%d:HEAD" % (sincerev+1)) 214 214 svnlog = ExternalCommand(cwd=self.basedir, command=cmd) 215 log = svnlog.execute('.', stdout=PIPE, TZ='UTC ')[0]215 log = svnlog.execute('.', stdout=PIPE, TZ='UTC0')[0] 216 216 217 217 if svnlog.exit_status: -
vcpx/cvs.py
r999 r1007 597 597 stderr=STDOUT, since=since, 598 598 repository=self.repository.repository, 599 branch=branch or 'HEAD', TZ='UTC ')[0]599 branch=branch or 'HEAD', TZ='UTC0')[0] 600 600 if cvslog.exit_status: 601 601 retry += 1
Note: See TracChangeset
for help on using the changeset viewer.
