summaryrefslogtreecommitdiff
path: root/Lib/plat-irix5/panelparser.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/plat-irix5/panelparser.py')
-rwxr-xr-xLib/plat-irix5/panelparser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/plat-irix5/panelparser.py b/Lib/plat-irix5/panelparser.py
index 1b069fa075..ee50971683 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 = []