Loading tools/lemmy_fetcher.py +1 −1 Original line number Diff line number Diff line Loading @@ -173,7 +173,7 @@ def process_post(self, post_body, make_pr): if make_pr: if success: subprocess.check_call(["git", "add", EDITIONS[self.edition]["entry_folder"]]) subprocess.check_call(["git" "commit", "-m", "Add submission from Lemmy post " + str(post_id)]) subprocess.check_call(["git", "commit", "-m", "Add submission from Lemmy post " + str(post_id)]) subprocess.check_call(["git", "push", "--force", "origin", new_branch_name]) pr_url = self.forge.does_pr_already_exist(new_branch_name) if pr_url == False: Loading Loading
tools/lemmy_fetcher.py +1 −1 Original line number Diff line number Diff line Loading @@ -173,7 +173,7 @@ def process_post(self, post_body, make_pr): if make_pr: if success: subprocess.check_call(["git", "add", EDITIONS[self.edition]["entry_folder"]]) subprocess.check_call(["git" "commit", "-m", "Add submission from Lemmy post " + str(post_id)]) subprocess.check_call(["git", "commit", "-m", "Add submission from Lemmy post " + str(post_id)]) subprocess.check_call(["git", "push", "--force", "origin", new_branch_name]) pr_url = self.forge.does_pr_already_exist(new_branch_name) if pr_url == False: Loading