From b835d0c2474413f43c3f62aed421276741294c6e Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Mar 28 2014 08:38:52 +0000 Subject: Fix typo in the information message --- diff --git a/progit/fork.py b/progit/fork.py index 5b3fbde..27da012 100644 --- a/progit/fork.py +++ b/progit/fork.py @@ -176,7 +176,7 @@ def merge_request_pull(repo, requestid, username=None): orig_repo = pygit2.Repository(parentpath) if orig_repo.get(request.stop_id, None): - flask.flash('These chanages have already been merged.', 'error') + flask.flash('These changes have already been merged.', 'error') # Update status progit.lib.close_pull_request(SESSION, request) SESSION.commit()