summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Brictson <mattbrictson@users.noreply.github.com>2017-04-17 17:45:44 -0700
committerGitHub <noreply@github.com>2017-04-17 17:45:44 -0700
commitae39e731fa081c8c817737f674420b895898617b (patch)
tree6e157a91383a285b56b0095de6a702bb70afc872
parentf236783d69dfb0fc1daa1a4f187dde3792190449 (diff)
downloadplist-ae39e731fa081c8c817737f674420b895898617b.tar.gz
Fix unused variable `e` warning (#32)
-rw-r--r--lib/plist/parser.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/plist/parser.rb b/lib/plist/parser.rb
index de441fc..367d35f 100644
--- a/lib/plist/parser.rb
+++ b/lib/plist/parser.rb
@@ -213,7 +213,7 @@ module Plist
data = Base64.decode64(text.gsub(/\s+/, '')) unless text.nil?
begin
return Marshal.load(data)
- rescue Exception => e
+ rescue Exception
io = StringIO.new
io.write data
io.rewind