Skip to content

Commit

Permalink
typo: fix spelling of Parameter
Browse files Browse the repository at this point in the history
Signed-off-by: Karl Palsson <[email protected]>
  • Loading branch information
karlp committed Sep 30, 2014
1 parent ca02f9c commit 0ca8b5e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pymodbus/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@ def __init__(self, string=""):


class ParameterException(ModbusException):
''' Error resulting from invalid paramater '''
''' Error resulting from invalid parameter '''

def __init__(self, string=""):
''' Initialize the exception
:param string: The message to append to the error
'''
message = "[Invalid Paramter] %s" % string
message = "[Invalid Parameter] %s" % string
ModbusException.__init__(self, message)


Expand Down

0 comments on commit 0ca8b5e

Please sign in to comment.