From 13e12fbf29d89c74311f589a0402215941049e19 Mon Sep 17 00:00:00 2001 From: Rob Holland Date: Thu, 15 May 2008 22:36:10 +0100 Subject: small style fix --- lib/sqlite3/pragmas.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/sqlite3') diff --git a/lib/sqlite3/pragmas.rb b/lib/sqlite3/pragmas.rb index df40352..5c6177b 100644 --- a/lib/sqlite3/pragmas.rb +++ b/lib/sqlite3/pragmas.rb @@ -258,7 +258,7 @@ module SQLite3 # unquotes those values. def tweak_default(hash) case hash["dflt_value"] - when /^null$/i then + when /^null$/i hash["dflt_value"] = nil when /^'(.*)'$/ hash["dflt_value"] = $1.gsub(/''/, "'") -- cgit