Spelling, docstrings

This commit is contained in:
Luke Rogers 2014-02-14 16:49:41 +13:00
parent a76ff29d4b
commit 004ceb79fc
6 changed files with 7 additions and 5 deletions

View file

@ -20,7 +20,7 @@ def ping(inp, reply=None):
args = inp.split(' ')
host = args[0]
# check for a seccond argument and set the ping count
# check for a second argument and set the ping count
if len(args) > 1:
count = int(args[1])
if count > 20: