diff options
Diffstat (limited to 'Lib/plat-irix5/panelparser.py')
-rwxr-xr-x | Lib/plat-irix5/panelparser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/plat-irix5/panelparser.py b/Lib/plat-irix5/panelparser.py index 1b069fa..ee50971 100755 --- a/Lib/plat-irix5/panelparser.py +++ b/Lib/plat-irix5/panelparser.py @@ -71,7 +71,7 @@ syntax_error = 'syntax error' # May raise syntax_error. # def parse_expr(tokens): - if (not tokens) or tokens[0] <> '(': + if (not tokens) or tokens[0] != '(': raise syntax_error, 'expected "("' tokens = tokens[1:] expr = [] |