Loading tools/lemmy_fetcher.py +1 −1 Original line number Diff line number Diff line Loading @@ -287,7 +287,7 @@ def process_post(self, post_body, make_pr): pr_url = self.forge.does_pr_already_exist(new_branch_name) if pr_url == False: print("branch pushed, making PR") pr_url = self.forge.make_pr_between_branches(new_branch_name, "main", FetcherMessages.git_mr_title(post_body["name"]), FetcherMessages.git_mr_description(str(post_id))) pr_url = self.forge.make_pr_between_branches(new_branch_name, "main", FetcherMessages.git_mr_title(post_body["name"]), FetcherMessages.git_mr_description(post_id, self.edition)) else: print("branch pushed, PR already exists") self.send_comment(post_id, FetcherMessages.SuccessfulSubmission(pr_url), mr_branch=new_branch_name) Loading Loading
tools/lemmy_fetcher.py +1 −1 Original line number Diff line number Diff line Loading @@ -287,7 +287,7 @@ def process_post(self, post_body, make_pr): pr_url = self.forge.does_pr_already_exist(new_branch_name) if pr_url == False: print("branch pushed, making PR") pr_url = self.forge.make_pr_between_branches(new_branch_name, "main", FetcherMessages.git_mr_title(post_body["name"]), FetcherMessages.git_mr_description(str(post_id))) pr_url = self.forge.make_pr_between_branches(new_branch_name, "main", FetcherMessages.git_mr_title(post_body["name"]), FetcherMessages.git_mr_description(post_id, self.edition)) else: print("branch pushed, PR already exists") self.send_comment(post_id, FetcherMessages.SuccessfulSubmission(pr_url), mr_branch=new_branch_name) Loading