I'm getting the following parse error when I try to run the "Blame" command from the Subversion menu:
/Applications/TextMate.app/Contents/SharedSupport/Bundles/Subversion.tmbundle/Support/format_blame.rb:61: parse error puts ''+ linecount.to_s + "\n" + ^
This happened on build 540 as well as 567. I'm running 10.3.9.
Thanks, Bryce
On 18/10/2005, at 18.37, Allan Odgaard wrote:
Puts and print call to_s on their arguments, but + doesn't for string joining. Alternatively, use print a, b, c, d, "\n" where to_s will be called on each. Makes it look a bit more terse sometimes :-). Don't know if there is a difference between 1.6 and 1.8 in this case though.
-- Sune.