Changeset 561 in tailor for vcpx/source.py


Ignore:
Timestamp:
08/15/05 01:58:54 (8 years ago)
Author:
lele@…
Hash name:
20050814235854-97f81-f53cf4b6b8bddfa96031b61c948f32efe6af58d5
Message:

Accept a sincerev argument for getPendingChangesets()

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vcpx/source.py

    r540 r561  
    147147            return True 
    148148 
    149     def getPendingChangesets(self): 
     149    def getPendingChangesets(self, sincerev=None): 
    150150        """ 
    151151        Load the pending changesets from the state file, or query the 
     
    155155        revision, self.pending = self.state_file.load() 
    156156        if not self.pending: 
    157             self.pending = self._getUpstreamChangesets(revision) 
     157            self.pending = self._getUpstreamChangesets(revision or sincerev) 
    158158        return self.pending 
    159159 
Note: See TracChangeset for help on using the changeset viewer.