summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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