Commit be34e9db authored by Grant's avatar Grant
Browse files

fetcher: return type

parent a6922bf6
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -33,7 +33,7 @@ def does_pr_already_exist(self, from_branch):
	def make_pr_between_branches(self, from_branch, to_branch, title, body):
		if self.dry_run:
			print("DRY RUN: would create mr " + from_branch + " onto " + to_branch + " ; " + title + " ; " + body)
			return
			return "https://{}/#dry-run-mr/{}/{}".format(self.domain, from_branch, to_branch)

		url = "https://{}/api/v4/projects/{}/merge_requests".format(self.domain, self.project_id)
		req = requests.post(url, params={