Changeset 1320 in tailor for vcpx/repository/darcs/source.py


Ignore:
Timestamp:
02/27/07 02:13:31 (6 years ago)
Author:
John Goerzen <jgoerzen@…>
Hash name:
20070227011331-c2a52-028d5bbb2e7e1ee665fa84ee0bec28b6541b7582
Message:

Fix hash when changelog lines have trailing whitespace

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vcpx/repository/darcs/source.py

    r1318 r1320  
    331331                l = output.readline() 
    332332                while l.startswith('  '): 
    333                     changelog.append(l[2:].rstrip()) 
     333                    changelog.append(l[2:-1]) 
    334334                    l = output.readline() 
    335335 
Note: See TracChangeset for help on using the changeset viewer.