From 762e61d94ffa29948e626785f6967133c8196550 Mon Sep 17 00:00:00 2001 From: alstr Date: Sat, 29 May 2021 17:38:05 +0100 Subject: [PATCH] Add project support --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index b69008b..250d6fa 100644 --- a/main.py +++ b/main.py @@ -409,7 +409,7 @@ class TodoParser(object): separated_user_projects = self._get_projects(f'user projects: {default_user_projects}', 'user') issue.user_projects = separated_user_projects if len(issue.org_projects) == 0 and default_org_projects is not None: - separated_org_projects = self._get_projects(f'org projects: {default_org_projects}', 'user') + separated_org_projects = self._get_projects(f'org projects: {default_org_projects}', 'org') issue.org_projects = separated_org_projects return issues