diff options
-rw-r--r-- | lib/redmine/scm/adapters/bazaar_adapter.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/redmine/scm/adapters/bazaar_adapter.rb b/lib/redmine/scm/adapters/bazaar_adapter.rb index 016018bf6..90ba8a7bf 100644 --- a/lib/redmine/scm/adapters/bazaar_adapter.rb +++ b/lib/redmine/scm/adapters/bazaar_adapter.rb @@ -52,7 +52,7 @@ module Redmine end def scm_version_from_command_line - shellout("#{sq_bin} --version") { |io| io.read }.to_s + shellout("#{sq_bin} --version") {|io| io.read}.to_s end end @@ -295,7 +295,7 @@ module Redmine end ret = shellout( self.class.sq_bin + ' ' + - full_args_locale.map { |e| shell_quote e.to_s }.join(' '), + full_args_locale.map {|e| shell_quote e.to_s}.join(' '), &block ) if $? && $?.exitstatus != 0 @@ -314,7 +314,7 @@ module Redmine end ret = shellout( self.class.sq_bin + ' ' + - full_args_locale.map { |e| shell_quote e.to_s }.join(' '), + full_args_locale.map {|e| shell_quote e.to_s}.join(' '), &block ) ret |