From 7fc63be7c3e87ad37efdc271642a6c13ab277e73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Tue, 25 Apr 2017 19:39:14 +0200 Subject: [PATCH] fix typo in exception name --- post-receive-email | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/post-receive-email b/post-receive-email index 30c79d7..cb0816f 100755 --- a/post-receive-email +++ b/post-receive-email @@ -106,11 +106,11 @@ class RefChange(object): # Return the subject for the main email, without the leading [projectname] def get_subject(self): - raise NotImplemenetedError() + raise NotImplementedError() # Write the body of the main email to the given file object def generate_body(self, out): - raise NotImplemenetedError() + raise NotImplementedError() def generate_header(self, out, subject, include_revs=True, oldrev=None, newrev=None, cc=None): user = os.environ['USER']