Skip to content
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 augur/util/repo_load_controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ def get_colum_by_label(label: str)-> Column:
return None, {"status": "Invalid order by"}

# Find the column named in the 'order_by', and get its asc() or desc() method
directive: function = getattr(get_colum_by_label(order_by), direction.lower())
directive = getattr(get_colum_by_label(order_by), direction.lower())

repos = repos.order_by(directive())

Expand Down
Loading