Skip to content

Commit

Permalink
Merge pull request #65 from remakeelectric/trivial-typo
Browse files Browse the repository at this point in the history
typo: fix spelling of Parameter
  • Loading branch information
bashwork committed Feb 18, 2015
2 parents 14f68ac + 0ca8b5e commit 4038e22
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 4038e22

Please sign in to comment.