diff options
author | Matthew Newhook <matthew@zeroc.com> | 2008-06-12 15:02:56 +0800 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2008-06-12 15:02:56 +0800 |
commit | 8a8d023b9f2cdd9ee235f5a8a4893ef313770457 (patch) | |
tree | fbe10aac8d1d00c9fe67f2f2cdf3bb9ce25a2fdf /demoscript/Expect.py | |
parent | cygwin python is no longer required under Windows to run the expect scripts. (diff) | |
download | ice-8a8d023b9f2cdd9ee235f5a8a4893ef313770457.tar.bz2 ice-8a8d023b9f2cdd9ee235f5a8a4893ef313770457.tar.xz ice-8a8d023b9f2cdd9ee235f5a8a4893ef313770457.zip |
fix some demoscript problems discovered under w2008.
Diffstat (limited to 'demoscript/Expect.py')
-rwxr-xr-x | demoscript/Expect.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demoscript/Expect.py b/demoscript/Expect.py index a76c6d3e89b..c97ef8fad51 100755 --- a/demoscript/Expect.py +++ b/demoscript/Expect.py @@ -376,7 +376,7 @@ class Expect (object): try: if win32: # Next kill the app. - if Util.hasInterruptSupport(): + if self.hasInterruptSupport(): print "%s: did not respond to break. terminating: %d" % (self.desc, self.p.pid) subprocess.TerminateProcess(self.p._handle, -1) else: |