scm: bazaar: add @path_encoding instance value and set it UTF-8 at adapter initialize method (#11834)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10415 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
51e6c7589e
commit
f230ffbd54
|
@ -57,6 +57,11 @@ module Redmine
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def initialize(url, root_url=nil, login=nil, password=nil, path_encoding=nil)
|
||||||
|
@path_encoding = 'UTF-8'
|
||||||
|
super
|
||||||
|
end
|
||||||
|
|
||||||
# Get info about the repository
|
# Get info about the repository
|
||||||
def info
|
def info
|
||||||
cmd_args = %w|revno|
|
cmd_args = %w|revno|
|
||||||
|
|
Loading…
Reference in New Issue