diff options
author | Guido van Rossum <guido@python.org> | 1992-03-30 13:30:03 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1992-03-30 13:30:03 (GMT) |
commit | 14f43cf5dc0dffca22e4cbd3989928cc39e43014 (patch) | |
tree | d2dd8cb5bb1e9e9b245d69cbcd89cfe1b682154e /Demo/sgi/al/alwatch.py | |
parent | 453bd408bdd9287bb020e6ec5411983c8d176c89 (diff) | |
download | cpython-14f43cf5dc0dffca22e4cbd3989928cc39e43014.zip cpython-14f43cf5dc0dffca22e4cbd3989928cc39e43014.tar.gz cpython-14f43cf5dc0dffca22e4cbd3989928cc39e43014.tar.bz2 |
new '==' syntax
Diffstat (limited to 'Demo/sgi/al/alwatch.py')
-rwxr-xr-x | Demo/sgi/al/alwatch.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Demo/sgi/al/alwatch.py b/Demo/sgi/al/alwatch.py index 2b8acdd..ac53080 100755 --- a/Demo/sgi/al/alwatch.py +++ b/Demo/sgi/al/alwatch.py @@ -24,7 +24,7 @@ while 1: for i in range(0, len(params), 2): if params[i+1] <> old[i+1]: name = parameter_name[params[i]] - if params[i] = AL.INPUT_SOURCE: + if params[i] == AL.INPUT_SOURCE: if 0 <= old[i+1] < len(source_name): oldval = source_name[old[i+1]] else: |