Skip to content
This repository was archived by the owner on Jun 1, 2021. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion python/planout/ops/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def pretty(params):
try:
# if an op is invalid, we may not be able to pretty print it
my_pretty = Operators.operatorInstance(params).pretty()
except:
except AssertionError:
my_pretty = params
return my_pretty
elif type(params) is list:
Expand Down