diff options
author | Marko Kreen | 2010-08-02 14:10:12 +0000 |
---|---|---|
committer | Marko Kreen | 2010-08-02 14:10:12 +0000 |
commit | 1378405f22cefdbe8b04a7207b6cd9da5b0a9b74 (patch) | |
tree | 9cfdc4732c9f705e25636bfe4f60466c1cd6a48f /python/skytools/scripting.py | |
parent | e4ae2f58907a37bff361e5feaeb193381641fb4e (diff) |
Fix typo.
Diffstat (limited to 'python/skytools/scripting.py')
-rw-r--r-- | python/skytools/scripting.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/skytools/scripting.py b/python/skytools/scripting.py index cf50d42d..4be3aee3 100644 --- a/python/skytools/scripting.py +++ b/python/skytools/scripting.py @@ -487,7 +487,7 @@ class DBScript(object): help = "stop program safely (send SIGINT)") g.add_option("-k", "--kill", action="store_const", const="kill", dest="cmd", - help = "kill program immidiately (send SIGTERM)") + help = "kill program immediately (send SIGTERM)") p.add_option_group(g) return p @@ -759,7 +759,7 @@ class DBScript(object): """Here should user's processing happen. Return value is taken as boolean - if true, the next loop - starts immidiately. If false, DBScript sleeps for a loop_delay. + starts immediately. If false, DBScript sleeps for a loop_delay. """ raise Exception("Nothing implemented?") |