##// END OF EJS Templates
Fixed: Mercurial integration doesn't work if redmine is installed in folder path containing space (#3159)....
Jean-Philippe Lang -
r2587:ac6ecdb360aa
parent child
Show More
@@ -105,7 +105,7 module Redmine
105 105 # makes Mercurial produce a xml output.
106 106 def revisions(path=nil, identifier_from=nil, identifier_to=nil, options={})
107 107 revisions = Revisions.new
108 cmd = "#{HG_BIN} --debug --encoding utf8 -R #{target('')} log -C --style #{self.class.template_path}"
108 cmd = "#{HG_BIN} --debug --encoding utf8 -R #{target('')} log -C --style #{shell_quote self.class.template_path}"
109 109 if identifier_from && identifier_to
110 110 cmd << " -r #{identifier_from.to_i}:#{identifier_to.to_i}"
111 111 elsif identifier_from
General Comments 0
You need to be logged in to leave comments. Login now