Changeset 936 in tailor for vcpx/svn.py


Ignore:
Timestamp:
10/23/05 02:17:31 (8 years ago)
Author:
lele@…
Hash name:
20051023001731-97f81-14954dcffce9268ae57b0c917c4254b8e94dc783
Message:

Option to not use --limit with subversion < 1.2
This should fix #12.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vcpx/svn.py

    r934 r936  
    318318            initial = True 
    319319            cmd = self.repository.command("log", "--verbose", "--xml", 
    320                                           "--limit", "1", "--stop-on-copy", 
     320                                          "--stop-on-copy", 
    321321                                          "--revision", "1:HEAD") 
     322            if self.repository.use_limit: 
     323                cmd.extend(["--limit", "1"]) 
    322324            svnlog = ExternalCommand(command=cmd) 
    323325            out, err = svnlog.execute("%s%s" % (self.repository.repository, 
Note: See TracChangeset for help on using the changeset viewer.