Changeset 1007 in tailor


Ignore:
Timestamp:
11/17/05 02:55:08 (8 years ago)
Author:
lele@…
Hash name:
20051117015508-97f81-5ab2f632cda4b13e82fe8ca061119bf253bff558
Message:

Use UTC0 not UTC to force a neutral timezone

Location:
vcpx
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • vcpx/cvsps.py

    r1002 r1007  
    164164                                      cvsps=True) 
    165165        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] 
    167167 
    168168        for cs in changesets_from_cvsps(log, sincerev): 
  • vcpx/darcs.py

    r992 r1007  
    179179        pull = ExternalCommand(cwd=self.basedir, command=cmd) 
    180180        output = pull.execute(self.repository.repository, 
    181                               stdout=PIPE, stderr=STDOUT, TZ='UTC')[0] 
     181                              stdout=PIPE, stderr=STDOUT, TZ='UTC0')[0] 
    182182 
    183183        if pull.exit_status: 
  • vcpx/svn.py

    r991 r1007  
    213213                                      "--revision", "%d:HEAD" % (sincerev+1)) 
    214214        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] 
    216216 
    217217        if svnlog.exit_status: 
  • vcpx/cvs.py

    r999 r1007  
    597597                                 stderr=STDOUT, since=since, 
    598598                                 repository=self.repository.repository, 
    599                                  branch=branch or 'HEAD', TZ='UTC')[0] 
     599                                 branch=branch or 'HEAD', TZ='UTC0')[0] 
    600600            if cvslog.exit_status: 
    601601                retry += 1 
Note: See TracChangeset for help on using the changeset viewer.