[tuxdroid-svn] r213 - svnlook: warning: cannot set LC_CTYPE locale svnlook: warning: environment va
Status: Beta
Brought to you by:
ks156
From: svnlook:warning@affinitic.be:cannot s. L. l. <c2m...@c2...> - 2007-03-29 12:19:10
|
Author: svnlook: warning: cannot set LC_CTYPE locale Date: svnlook: warning: environment variable LANG is EN New Revision: 213 Modified: api/python/trunk/tuxapi_class.py Log: jaguarondi 2007-03-29 14:18:40 +0200 (Thu, 29 Mar 2007) 109 - BUG: fixed api issue #4 (tux.cmd.led[lr]_during don't work) where calls to led[lr] had too much arguments. svnlook: warning: cannot set LC_CTYPE locale svnlook: warning: environment variable LANG is EN svnlook: warning: please check that your locale name is correct Modified: api/python/trunk/tuxapi_class.py =================================================================== --- api/python/trunk/tuxapi_class.py 2007-03-29 10:03:03 UTC (rev 212) +++ api/python/trunk/tuxapi_class.py 2007-03-29 12:18:40 UTC (rev 213) @@ -1025,7 +1025,7 @@ ## Send command to tux for left led on during a time ## @param seconds : number of seconds def ledl_during(self,seconds): - self.ledl_on(255) + self.ledl_on() time.sleep(seconds) self.ledl_off() @@ -1045,7 +1045,7 @@ ## Send command to tux for right led on during a time ## @param seconds : number of seconds def ledr_during(self,seconds): - self.ledr_on(255) + self.ledr_on() time.sleep(seconds) self.ledr_off() |