From e3510ca5637a61401eef0a1472b93376a83ce791 Mon Sep 17 00:00:00 2001 From: CCS Operator Account Date: Fri, 4 Sep 2020 13:39:50 -0700 Subject: [PATCH] fixed some error --- lib/bot_bench.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bot_bench.py b/lib/bot_bench.py index 70e2469..d6ea755 100755 --- a/lib/bot_bench.py +++ b/lib/bot_bench.py @@ -32,7 +32,7 @@ def setSpotFilter(filter): def openShutter(exposure): sanityCheck() print "Open shutter for %s seconds" % exposure - print "Actual open time to tell the shutter is %d seconds" % int(1000*exposure*(1.-5/800.))) + print "Actual open time to tell the shutter is %d mili seconds" % int(1000*exposure*(1.-5/800.)) a=time.time() bb.ProjectorShutter().exposure(Duration.ofMillis(int(1000*exposure*(1.-5/800.)))) b=time.time()