Commit 92f222b9 authored by Robert Bradshaw's avatar Robert Bradshaw Committed by GitHub

Merge pull request #1560 from ignatenkobrain/master

fix typo in Compiler/Options.py
parents 40d62647 3526e087
......@@ -8,10 +8,10 @@ class ShouldBeFromDirective(object):
known_directives = []
def __init__(self, options_name, directive_name=None, dissallow=False):
def __init__(self, options_name, directive_name=None, disallow=False):
self.options_name = options_name
self.directive_name = directive_name or options_name
self.dissallow = dissallow
self.disallow = disallow
self.known_directives.append(self)
def __nonzero__(self):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment