aboutsummaryrefslogtreecommitdiffhomepage
path: root/data/sisu
diff options
context:
space:
mode:
authorRalph Amissah <ralph@amissah.com>2012-01-23 21:42:25 -0500
committerRalph Amissah <ralph@amissah.com>2012-01-23 21:42:27 -0500
commit21f5e220b738add01c19c2b15a76f2d240b2c0d5 (patch)
tree287dac6e47cab1da0d0567e9dc79683bc8d757b0 /data/sisu
parentv3dv: call most methods by full name (include associated module & class names) (diff)
v3dv: replace use of most ruby exclamation (!) method actionssisu_3.1.12
Diffstat (limited to 'data/sisu')
-rw-r--r--data/sisu/v3dv/conf/convert/modify.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/data/sisu/v3dv/conf/convert/modify.rb b/data/sisu/v3dv/conf/convert/modify.rb
index fab7832d..8a4b9074 100644
--- a/data/sisu/v3dv/conf/convert/modify.rb
+++ b/data/sisu/v3dv/conf/convert/modify.rb
@@ -173,7 +173,7 @@ WOK
if t =~m
p m.to_s + ' -> ' + r
puts "in: #{t}"
- t.gsub!(m,r) if m and r
+ t=t.gsub(m,r) if m and r
puts "out: #{t}"
end
end