From ad4a6b62f2bcaf2d9138adc8b951c38abdccc441 Mon Sep 17 00:00:00 2001 From: Stephen Soltesz Date: Mon, 20 Jul 2009 23:04:43 +0000 Subject: [PATCH] sleep could probably be reduced, but the extra newlines are required. --- pcucontrol/models/DRAC.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pcucontrol/models/DRAC.py b/pcucontrol/models/DRAC.py index e3172b6..712cf19 100644 --- a/pcucontrol/models/DRAC.py +++ b/pcucontrol/models/DRAC.py @@ -45,7 +45,8 @@ class DRAC(PCUControl): # returns right away without waiting for the commands above to # complete... Therefore, this delay is guaranteed to fail in some # other context... - time.sleep(5) + s.send("\r\n\r\n") + time.sleep(20) index = s.expect(["\$", "\[%s\]#" % self.username ]) print s print "INDEX 2:", index -- 2.47.0