Commit b7e5cfd1 authored by marius david's avatar marius david
Browse files

fix variable typo causing crash

parent 9c386c75
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -67,8 +67,8 @@ def process_post(self, post_body, make_pr = False):
		post_json = None
		if post_body_main.startswith("```json"):
			post_body_main = post_body_main[7:]
		if post_body.startswith("```"):
			post_body = post_body[3:]
		if post_body_main.startswith("```"):
			post_body_main = post_body_main[3:]
		if post_body_main.endswith("```"):
			post_body_main = post_body_main[:-3]