Changeset 81 in tailor
- Timestamp:
- 07/12/04 19:02:09 (9 years ago)
- Hash name:
- 20040712170209-97f81-b3080ea317c068caa46bd1ccac21b06af588d62d
- File:
-
- 1 edited
-
vcpx/cvs.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
vcpx/cvs.py
r80 r81 29 29 30 30 class CvsLog(SystemCommand): 31 COMMAND = "cvs log -N -S %(branch)s %(since)s "31 COMMAND = "cvs log -N -S %(branch)s %(since)s 2>/dev/null" 32 32 33 33 def __call__(self, output=None, dry_run=False, **kwargs): 34 34 since = kwargs.get('since') 35 35 if since: 36 kwargs['since'] = "-d'%s<'" % since .isoformat(sep=' ')36 kwargs['since'] = "-d'%s<'" % since 37 37 else: 38 38 kwargs['since'] = '' … … 213 213 from os.path import join, exists 214 214 215 entries = CvsEntries(root) 216 latest = entries.getMostRecentEntry() 217 since = latest.timestamp 218 215 if not sincerev: 216 entries = CvsEntries(root) 217 latest = entries.getMostRecentEntry() 218 since = latest.timestamp.isoformat(sep=' ') 219 else: 220 # Assume this is from __getGlobalRevision() 221 since = sincerev.split(';')[0] 222 219 223 branch = '' 220 224 fname = join(root, 'CVS', 'Tag')
Note: See TracChangeset
for help on using the changeset viewer.
