[tuxdroid-svn] r4648 - software_suite_v2/software/gadgets/tuxdroid-gadget-maxlight/trunk/executable
Status: Beta
Brought to you by:
ks156
|
From: jerome <c2m...@c2...> - 2009-05-07 08:19:35
|
Author: jerome
Date: 2009-05-07 10:19:30 +0200 (Thu, 07 May 2009)
New Revision: 4648
Modified:
software_suite_v2/software/gadgets/tuxdroid-gadget-maxlight/trunk/executables/tuxdroid-gadget-maxlight.py
Log:
* Removed a print.
Modified: software_suite_v2/software/gadgets/tuxdroid-gadget-maxlight/trunk/executables/tuxdroid-gadget-maxlight.py
===================================================================
--- software_suite_v2/software/gadgets/tuxdroid-gadget-maxlight/trunk/executables/tuxdroid-gadget-maxlight.py 2009-05-07 08:13:22 UTC (rev 4647)
+++ software_suite_v2/software/gadgets/tuxdroid-gadget-maxlight/trunk/executables/tuxdroid-gadget-maxlight.py 2009-05-07 08:19:30 UTC (rev 4648)
@@ -177,7 +177,6 @@
elif not ( tux.status.requestOne('charger_state')[0] == 'UNPLUGGED' ) :
GadgetHelper.throwMessage("Unplug my charger first and try again.")
else:
- start = int(time())
GadgetHelper.throwMessage("Looking for the brightest light source")
tux.eyes.open()
tux.flippers.up()
@@ -185,8 +184,6 @@
currentTime = int(time())
stop(light, currentTime) # stop
tux.flippers.down()
- stop = int(time())
- print( stop - start )
tux.access.release()
tux.server.disconnect()
|