Skip to content

Commit

Permalink
Fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
InsertDisc authored Nov 15, 2023
1 parent e046873 commit 20cec27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pattrmm.py
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ def settings(self):
print(f'''Invalid order by setting "{invalid_order_by}".
Order by field '{invalid_order_by}' found. Using '{order_by}'.''')
logging.warning(f'''Invalid order by setting "{order_by}", falling back to default {default_order_by}''')
if order_by not in possible fields:
if order_by not in possible_fields:
print(f'''{order_by} is not a valid option. Using default.''')
self.order_by = default_order_by
except KeyError:
Expand Down

0 comments on commit 20cec27

Please sign in to comment.