patchupdate.py: Fix typo in name of exception.

This commit is contained in:
Sebastian Lackner 2014-08-28 03:28:34 +02:00
parent a8f3f9c4e4
commit 15a19d27fc

View File

@ -282,7 +282,7 @@ def read_patchset(revision = None):
patch.authors, patch.depends, patch.fixes = \
read_definition(revision, os.path.join(config.path_patches, patch.name), name_to_id)
except IOError:
raise PatchUpaterError("Missing definition file for %s" % patch.name)
raise PatchUpdaterError("Missing definition file for %s" % patch.name)
return all_patches