DOC: s/defination/definition/g learn to spell

pull/194/head
Daniel Black 2013-04-30 08:07:21 +10:00
parent e5474e57aa
commit d28f3fa285
2 changed files with 4 additions and 4 deletions

View File

@ -90,7 +90,7 @@ Borreli, blotus:
* [c8c7b0b,23bbc60] Better logging of log file read errors. * [c8c7b0b,23bbc60] Better logging of log file read errors.
* [3665e6d] Added code coverage to development process. * [3665e6d] Added code coverage to development process.
* [41b9f7b,32d10e9] More complete ssh filter rules to match openssh source. * [41b9f7b,32d10e9] More complete ssh filter rules to match openssh source.
* [1d9abd1] Action files can have tags in defination that refer to other * [1d9abd1] Action files can have tags in definition that refer to other
tags. tags.
Pascal Borreli Pascal Borreli
* [a2b29b4] Fixed lots of typos in config files and documentation. * [a2b29b4] Fixed lots of typos in config files and documentation.

View File

@ -246,13 +246,13 @@ class Action:
return Action.executeCmd(stopCmd) return Action.executeCmd(stopCmd)
## ##
# Sort out tag definations within other tags # Sort out tag definitions within other tags
# #
# so: becomes: # so: becomes:
# a = 3 a = 3 # a = 3 a = 3
# b = <a>_3 b = 3_3 # b = <a>_3 b = 3_3
# @param tags, a dictionary # @param tags, a dictionary
# @returns tags altered or False if there is a recursive defination # @returns tags altered or False if there is a recursive definition
#@staticmethod #@staticmethod
def substituteRecursiveTags(tags): def substituteRecursiveTags(tags):
t = re.compile(r'<([^ >]+)>') t = re.compile(r'<([^ >]+)>')
@ -261,7 +261,7 @@ class Action:
m = t.search(value) m = t.search(value)
while m: while m:
if m.group(1) == tag: if m.group(1) == tag:
# recursive definations are bad # recursive definitions are bad
return False return False
else: else:
if tags.has_key(m.group(1)): if tags.has_key(m.group(1)):