Changeset 808 in tailor


Ignore:
Timestamp:
09/13/05 14:09:23 (8 years ago)
Author:
lele@…
Hash name:
20050913120923-97f81-e331a0744b262707d3678dd8b05e9ba078571811
Message:

Do not fail when subversion does not find any change
This may happen for example when dealing with a "darcs tag", that does not
change the content of the tree.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vcpx/svn.py

    r806 r808  
    357357                                              (str(commit), commit.exit_status)) 
    358358        line = out.readline() 
     359        if not line: 
     360            # svn did not find anything to commit 
     361            return 
     362 
    359363        while line and not line.startswith('Committed revision '): 
    360364            if not line.startswith('Sending ') and \ 
Note: See TracChangeset for help on using the changeset viewer.