diff options
Diffstat (limited to 'lib/redmine/scm/adapters/mercurial_adapter.rb')
-rw-r--r-- | lib/redmine/scm/adapters/mercurial_adapter.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/redmine/scm/adapters/mercurial_adapter.rb b/lib/redmine/scm/adapters/mercurial_adapter.rb index fb78b05d1..7325e3df3 100644 --- a/lib/redmine/scm/adapters/mercurial_adapter.rb +++ b/lib/redmine/scm/adapters/mercurial_adapter.rb @@ -135,6 +135,7 @@ module Redmine begin @summary = parse_xml(output)['rhsummary'] rescue + # do nothing end end end @@ -148,6 +149,7 @@ module Redmine begin parse_xml(output)['rhmanifest']['repository']['manifest'] rescue + # do nothing end end path_prefix = path.blank? ? '' : with_trailling_slash(path) @@ -193,6 +195,7 @@ module Redmine # Mercurial < 1.5 does not support footer template for '</log>' parse_xml("#{output}</log>")['log'] rescue + # do nothing end end as_ary(log['logentry']).each do |le| |