Changeset 599 in tailor


Ignore:
Timestamp:
08/16/05 23:34:13 (8 years ago)
Author:
lele@…
Hash name:
20050816213413-97f81-e49e05a9526e54ee856aff2d446bad98774573d5
Message:

Don't be excessively verbose on darcs get/pull

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vcpx/darcs.py

    r594 r599  
    292292                                                   init.exit_status)) 
    293293 
    294                 cmd = [self.repository.DARCS_CMD, "pull", "--all", "--verbose"] 
     294                cmd = [self.repository.DARCS_CMD, "pull", "--all"] 
    295295                if revision and revision<>'HEAD': 
    296296                    cmd.extend([initial and "--match" or "--tag", revision]) 
     
    305305        else: 
    306306            # Use much faster 'darcs get' 
    307             cmd = [self.repository.DARCS_CMD, "get", "--partial", "--verbose"] 
     307            cmd = [self.repository.DARCS_CMD, "get", "--partial"] 
    308308            if revision and revision<>'HEAD': 
    309309                cmd.extend([initial and "--to-match" or "--tag", revision]) 
Note: See TracChangeset for help on using the changeset viewer.