Skip to content
Snippets Groups Projects
Commit 1db651ae authored by Blake Fitch's avatar Blake Fitch
Browse files

turn output of type() to string in log line

parent 9ed86422
No related branches found
No related tags found
No related merge requests found
......@@ -205,8 +205,8 @@ def pydict_to_irods_avus( coll_or_obj, metadata_dict ):
# Load the dict into a list of AVU ops
for key, value in metadata_dict.items():
logging.debug( "Create AVU OP list. ipath: " + coll_or_obj.path
+ " key: " + key + " type(key): " + type(key)
+ " value: " + value + " type(value): " + type(value) )
+ " key: " + key + " type(key): " + str(type(key))
+ " value: " + value + " type(value): " + str(type(value)) )
if value == "":
value = " "
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment