From: martinahansen Date: Thu, 15 Dec 2011 10:17:42 +0000 (+0000) Subject: fixed typo in replace_vals X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=952528f3c5d6c9d69bcb141850e3f86bd7f3a1d9;p=biopieces.git fixed typo in replace_vals git-svn-id: http://biopieces.googlecode.com/svn/trunk@1713 74ccb610-7750-0410-82ae-013aeee3265d --- diff --git a/bp_bin/replace_vals b/bp_bin/replace_vals index 8ad373e..a810559 100755 --- a/bp_bin/replace_vals +++ b/bp_bin/replace_vals @@ -60,7 +60,7 @@ if options[:file] k = fields[options[:search_col] - 1] v = fields[options[:replace_col] - 1] - raise RuntimeError "duplicate key: #{k} found in file" if replace_hash.has_key? k + raise RuntimeError, "duplicate key: #{k} found in file" if replace_hash.has_key? k replace_hash[k] = v end