Skip to content

Commit

Permalink
Fixing ruby 1.8.6 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
mrduncan committed Sep 8, 2009
1 parent d037adb commit 2e07509
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/source_control/subversion/propget_parser.rb
Expand Up @@ -3,7 +3,7 @@ class Subversion

class Subversion::PropgetParser
def parse(lines)
lines = lines.lines if lines.is_a?(String)
lines = lines.lines if lines.is_a?(String) && lines.respond_to?(:lines)

directories = {}
current_dir = nil
Expand Down

0 comments on commit 2e07509

Please sign in to comment.