fix typo in exception name

This commit is contained in:
Frédéric Péters 2017-04-25 19:39:14 +02:00
parent 4724203731
commit 7fc63be7c3
1 changed files with 2 additions and 2 deletions

View File

@ -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']