Fixed a typo in Puppetboard's catalog view (#282)

Replaced oder_by_str with order_by_str in get_or_abort() to fix app crash.
This commit is contained in:
Thomas Hager
2016-07-28 01:59:20 +02:00
committed by Corey Hammerton
parent 12b0d09f9b
commit 294e2d6559

View File

@@ -837,7 +837,7 @@ def catalogs(env):
nodes = get_or_abort(puppetdb.nodes, nodes = get_or_abort(puppetdb.nodes,
query=query, query=query,
with_status=False, with_status=False,
order_by=oder_by_str) order_by=order_by_str)
nodes, temp = tee(nodes) nodes, temp = tee(nodes)
for node in temp: for node in temp: