diff options
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 4a52ab2..da747d4 100755 --- a/Demo/sgi/al/alwatch.py +++ b/Demo/sgi/al/alwatch.py @@ -10,7 +10,7 @@ params = al.queryparams(dev) for i in range(1, len(params), 2): params[i] = -1 while 1: - time.millisleep(100) + time.sleep(0.1) old = params[:] al.getparams(dev, params) if params <> old: |