summaryrefslogtreecommitdiffstats
path: root/lib/redmine/export/csv.rb
diff options
context:
space:
mode:
authorGo MAEDA <maeda@farend.jp>2023-12-20 07:15:11 +0000
committerGo MAEDA <maeda@farend.jp>2023-12-20 07:15:11 +0000
commitc51e4937e7c7abafec00c883f3d7e45e53e5175f (patch)
tree3fe1226454e64d021188f63db060aebd1764bc5a /lib/redmine/export/csv.rb
parentb5527205907048d039c34d6fac2635f363ae4819 (diff)
downloadredmine-c51e4937e7c7abafec00c883f3d7e45e53e5175f.tar.gz
redmine-c51e4937e7c7abafec00c883f3d7e45e53e5175f.zip
Fix RuboCop offense Style/SuperWithArgsParentheses (#39887).
git-svn-id: https://svn.redmine.org/redmine/trunk@22530 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib/redmine/export/csv.rb')
-rw-r--r--lib/redmine/export/csv.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/redmine/export/csv.rb b/lib/redmine/export/csv.rb
index c55546347..8606eb438 100644
--- a/lib/redmine/export/csv.rb
+++ b/lib/redmine/export/csv.rb
@@ -57,7 +57,7 @@ module Redmine
field
end
end
- super row
+ super(row)
end
end
end