Skip to content

Commit

Permalink
[BUG] Fixed typo error
Browse files Browse the repository at this point in the history
  • Loading branch information
Adrien Delle Cave committed Apr 3, 2018
1 parent 27e51bf commit 46cc990
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cabot_check_ping/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 46cc990

Please sign in to comment.