diff options
Diffstat (limited to 'cpp/test/IceStorm/single/run.py')
-rwxr-xr-x | cpp/test/IceStorm/single/run.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/test/IceStorm/single/run.py b/cpp/test/IceStorm/single/run.py index 98e81997c7f..3a39ce4415a 100755 --- a/cpp/test/IceStorm/single/run.py +++ b/cpp/test/IceStorm/single/run.py @@ -14,7 +14,7 @@ # ********************************************************************** import os, sys -from time import sleep +import time for toplevel in [".", "..", "../..", "../../..", "../../../.."]: toplevel = os.path.normpath(toplevel) @@ -110,7 +110,7 @@ while os.path.isfile(subscriberLockFile): print "failed!" TestUtil.killServers() sys.exit(1) - sleep(1) + time.sleep(1) lockCount = lockCount + 1 print "ok" |