Changeset 842 in tailor


Ignore:
Timestamp:
09/24/05 23:37:44 (8 years ago)
Author:
lele@…
Hash name:
20050924213744-97f81-e9221c2eef516c49fd4979c1d68a9c65a4600c6a
Message:

M-x whitespace-cleanup

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vcpx/svn.py

    r841 r842  
    101101                # RENAMED. 
    102102 
    103                 # When copying a directory from another location in the  
    104                 # repository (outside the tracked tree), SVN will report files  
    105                 # below this dir that are not being committed as being  
     103                # When copying a directory from another location in the 
     104                # repository (outside the tracked tree), SVN will report files 
     105                # below this dir that are not being committed as being 
    106106                # removed. 
    107107 
    108108                # We thus need to change the action_kind for all entries 
    109                 # that are below a dir that was "copyfrom" from a path  
     109                # that are below a dir that was "copyfrom" from a path 
    110110                # outside of this module: 
    111                 #       D -> Remove entry completely (it's not going to be in here) 
    112                 #       (M,A,R) -> A 
     111                #  D -> Remove entry completely (it's not going to be in here) 
     112                #  (M,A,R) -> A 
    113113 
    114114                mv_or_cp = {} 
     
    138138                        entries.append(e) 
    139139                    elif parent_was_copied_externally(e.name): 
    140                         if e.action_kind != e.DELETED:     
     140                        if e.action_kind != e.DELETED: 
    141141                            e.action_kind = e.ADDED 
    142142                            entries.append(e) 
Note: See TracChangeset for help on using the changeset viewer.