Skip to content

Commit

Permalink
scuba: Show simple type name in alias environment error messages
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathonReinhart committed Sep 9, 2018
1 parent 456144d commit 85d9904
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scuba/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ def _process_environment(node, name):
result[k] = v
else:
raise ConfigError("'{0}' must be list or mapping, not {1}".format(
name, type(node)))
name, type(node).__name__))

return result

Expand Down

0 comments on commit 85d9904

Please sign in to comment.