diff --git a/docs/en_US/release_notes_7_2.rst b/docs/en_US/release_notes_7_2.rst index fda2c6ebe..3dd761cf8 100644 --- a/docs/en_US/release_notes_7_2.rst +++ b/docs/en_US/release_notes_7_2.rst @@ -50,3 +50,4 @@ Bug fixes | `Issue #6279 `_ - Fix incorrect number of foreign tables displayed. Show column comments in RE-SQL. | `Issue #6280 `_ - View SQL tab not quoting column comments. | `Issue #6281 `_ - VarChar Field Sizes are missing from Query's Grid header. + | `Issue #6325 `_ - Fixed an issue where Operators collection node throwing an error. diff --git a/web/pgadmin/browser/server_groups/servers/databases/schemas/operators/__init__.py b/web/pgadmin/browser/server_groups/servers/databases/schemas/operators/__init__.py index bae1d19d8..6d09de73e 100644 --- a/web/pgadmin/browser/server_groups/servers/databases/schemas/operators/__init__.py +++ b/web/pgadmin/browser/server_groups/servers/databases/schemas/operators/__init__.py @@ -169,10 +169,6 @@ class OperatorView(PGChildNodeView): # Set the template path for the SQL scripts self.template_path = \ self.BASE_TEMPLATE_PATH.format(self.manager.version) - self.template_path = compile_template_path( - self.BASE_TEMPLATE_PATH, - self.manager.version - ) return f(*args, **kwargs)