Skip to content

Commit

Permalink
missing instance reference
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeseibel committed Jul 3, 2024
1 parent 440b099 commit 493420e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scheduler/views/api/folder.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def _insert_folder(self, folders, folder):
if parent:
self._add_child(parent, folder)
else:
parent = self._folder(_get_folder_by_id(parent_id))
parent = self._folder(self._get_folder_by_id(parent_id))
self._add_child(parent, folder)
self._insert_folder(folders, parent)
else:
Expand Down

0 comments on commit 493420e

Please sign in to comment.