Changeset 113 in tailor for vcpx/svn.py


Ignore:
Timestamp:
07/23/04 01:17:28 (9 years ago)
Author:
lele@…
Hash name:
20040722231728-de980-1b45eecd209ca4bc80caab7ddccd7a7936d4c5ce
Message:

Do not write spurious newline in the svn changelog, really
Since under svn isn't possible to store the real date and author of
the changeset, save the information in the changelog.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vcpx/svn.py

    r112 r113  
    291291        c = SvnCommit(working_dir=root) 
    292292         
    293         logmessage = "%s\nOriginal author: %s\nDate: %s\n" % (remark, author, 
    294                                                               date) 
     293        logmessage = "%s\nOriginal author: %s\nDate: %s" % (remark, author, 
     294                                                            date) 
    295295        if changelog: 
    296             logmessage = logmessage + '\n' + changelog + '\n' 
     296            logmessage = logmessage + '\n\n' + changelog 
    297297             
    298298        if entries: 
Note: See TracChangeset for help on using the changeset viewer.