Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

Commit

Permalink
Merge pull request #3778 from BigRoy/fix_settings_inactive_project
Browse files Browse the repository at this point in the history
Settings: Fix settings for inactive projects
  • Loading branch information
iLLiCiTiT authored Sep 2, 2022
2 parents f351bd0 + 58724a4 commit aa46a19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openpype/client/entities.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def get_projects(active=True, inactive=False, fields=None):
yield project_doc


def get_project(project_name, active=True, inactive=False, fields=None):
def get_project(project_name, active=True, inactive=True, fields=None):
# Skip if both are disabled
if not active and not inactive:
return None
Expand Down

0 comments on commit aa46a19

Please sign in to comment.