Fix a typo (unexcepted -> unexpected) in the description of the invalid encoding warning.

This commit is contained in:
Torsten Marek 2013-06-19 13:21:58 +02:00
parent 3c96b2f385
commit 3fd411930f
3 changed files with 3 additions and 3 deletions

View File

@ -27,7 +27,7 @@ MSGS = {
'W0511': ('%s',
'fixme',
'Used when a warning note as FIXME or XXX is detected.'),
'W0512': ('Cannot decode using encoding "%s", unexcepted byte at position %d',
'W0512': ('Cannot decode using encoding "%s", unexpected byte at position %d',
'invalid-encoded-data',
'Used when a source line cannot be decoded using the specified '
'source file encoding.'),

View File

@ -1 +1 @@
W: 6: Cannot decode using encoding "utf-8", unexcepted byte at position 11
W: 6: Cannot decode using encoding "utf-8", unexpected byte at position 11

View File

@ -2,4 +2,4 @@ C: 1: Line too long (90/80)
C: 2: Line too long (94/80)
C: 11: Line too long (101/80)
C: 17: Line too long (83/80)
W: 11: Cannot decode using encoding "ascii", unexcepted byte at position 37
W: 11: Cannot decode using encoding "ascii", unexpected byte at position 37