From: martinahansen Date: Thu, 15 Dec 2011 10:13:38 +0000 (+0000) Subject: fixed typo in replace_vals X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=d7247b71a23e582c9efebc72797deea227eebce7;p=biopieces.git fixed typo in replace_vals git-svn-id: http://biopieces.googlecode.com/svn/trunk@1712 74ccb610-7750-0410-82ae-013aeee3265d --- diff --git a/bp_bin/replace_vals b/bp_bin/replace_vals index 3290010..8ad373e 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