Skip to content

Commit

Permalink
fix tuple error message (keras-team#6530)
Browse files Browse the repository at this point in the history
  • Loading branch information
cocuh authored and fchollet committed May 7, 2017
1 parent d223cc0 commit ea8e2ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion keras/utils/generic_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ def deserialize_keras_object(identifier, module_objects=None,
else:
fn = module_objects.get(function_name)
if fn is None:
raise ValueError('Unknown ' + printable_module_name,
raise ValueError('Unknown ' + printable_module_name +
':' + function_name)
return fn
else:
Expand Down

0 comments on commit ea8e2ed

Please sign in to comment.