Skip to content

Commit

Permalink
fix: add missing comma to catalog query fields list.
Browse files Browse the repository at this point in the history
  • Loading branch information
iloveagent57 committed Jan 28, 2024
1 parent 0c69460 commit 37cc96b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ Change Log
Unreleased
----------

[4.10.11]
---------
* fix: add missing comma to catalog query fields list.

[4.10.10]
---------

Expand Down
2 changes: 1 addition & 1 deletion enterprise/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
Your project description goes here.
"""

__version__ = "4.10.10"
__version__ = "4.10.11"
2 changes: 1 addition & 1 deletion enterprise/admin/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -811,7 +811,7 @@ class Meta:
model = models.EnterpriseCatalogQuery

fields = (
'uuid'
'uuid',
'title',
'discovery_query_url',
'content_filter',
Expand Down

0 comments on commit 37cc96b

Please sign in to comment.