diff --git a/cabot_check_ping/models.py b/cabot_check_ping/models.py index 404910a..7de90fc 100755 --- a/cabot_check_ping/models.py +++ b/cabot_check_ping/models.py @@ -93,7 +93,7 @@ def _run(self): if r['packet_loss'] > 0.0: raise Exception("%0.1f%% packet loss" % r['packet_loss']) elif self.max_rtt and r['rtt']['avg'] > self.max_rtt: - raise Exception("Maximum avergage RTT reached: %s" % r['rtt']['avg']) + raise Exception("Maximum average RTT reached: %s" % r['rtt']['avg']) except subprocess.CalledProcessError as e: result.succeeded = False result.error = e.output diff --git a/setup.py b/setup.py index ec4517b..7820944 100755 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import find_packages, setup setup(name='cabot_check_ping', - version='0.1.0', + version='0.1.1', description='A ping check plugin for Cabot', author='Adrien DELLE CAVE', author_email='pypi@doowan.net',