Commit 2c4506a2 authored by Jim Fulton's avatar Jim Fulton

Removed a print statement. Getting class meta data from a pickle

can fail if the pickle has been transformed and a calling storage
doesn't account for that.  Printing is certainly not the right way to
deal with the problem.

Also cleaned up some whitespace.
parent 2509cc6d
......@@ -206,7 +206,6 @@ def get_pickle_metadata(data):
try:
class_info = u.load()
except Exception, err:
print "Error", err
return '', ''
if isinstance(class_info, tuple):
if isinstance(class_info[0], tuple):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment