Changeset 1644 in tailor


Ignore:
Timestamp:
06/20/08 11:31:50 (5 years ago)
Author:
lele@…
Hash name:
20080620093150-97f81-5427c9d3c399d734afde7586abddf763abab0de3
Message:

Removed useless condition
Why does the monotone backend need to always commit everything instead
of the exact changes?

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vcpx/repository/monotone.py

    r1643 r1644  
    956956        commit = ExternalCommand(cwd=self.repository.basedir, command=cmd) 
    957957 
    958         entries = None 
    959         if not entries: 
    960             entries = ['.'] 
     958        # Always commit everything, ignoring given entries... 
     959        # XXX is this right? 
     960        entries = ['.'] 
    961961 
    962962        output, error = commit.execute(entries, stdout=PIPE, stderr=PIPE) 
Note: See TracChangeset for help on using the changeset viewer.