diff options
author | Matthew Newhook <matthew@zeroc.com> | 2009-03-11 17:34:36 -0230 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2009-03-11 17:34:36 -0230 |
commit | cc36f80030ace7833ca74a8b37301a9c6359bba4 (patch) | |
tree | 025820def7493227b600448bb77ce97f8bf69a80 /scripts/Expect.py | |
parent | Fixed bug #3821 (diff) | |
download | ice-cc36f80030ace7833ca74a8b37301a9c6359bba4.tar.bz2 ice-cc36f80030ace7833ca74a8b37301a9c6359bba4.tar.xz ice-cc36f80030ace7833ca74a8b37301a9c6359bba4.zip |
http://bugzilla/bugzilla/show_bug.cgi?id=3835 - AttributeError in __del__
Diffstat (limited to 'scripts/Expect.py')
-rwxr-xr-x | scripts/Expect.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/Expect.py b/scripts/Expect.py index cc02bcda0f1..2ce0cd55b51 100755 --- a/scripts/Expect.py +++ b/scripts/Expect.py @@ -300,6 +300,7 @@ class Expect (object): self.desc = desc self.logfile = logfile self.timeout = timeout + self.p = None if self.logfile: self.logfile.write('spawn: "%s"\n' % command) |