buildframework/helium/sf/python/pythoncore/lib/pythoncoretests/test_symbian_log.py
changeset 628 7c4a911dc066
parent 587 85df38eb4012
--- a/buildframework/helium/sf/python/pythoncore/lib/pythoncoretests/test_symbian_log.py	Wed Jun 16 16:51:40 2010 +0300
+++ b/buildframework/helium/sf/python/pythoncore/lib/pythoncoretests/test_symbian_log.py	Fri Aug 13 14:59:05 2010 +0300
@@ -104,10 +104,10 @@
         _logger.debug(name) 
         self.stages.append(name)
 
-    def task(self, name, cmdline, dir, output):
+    def task(self, name, cmdline, dir_, output):
         """task"""
-        _logger.debug("%s, %s, %s, %s" % (name, cmdline, dir, output)) 
-        self.tasks.append({'name': name, 'cmdline': cmdline, 'dir': dir, 'output': output})
+        _logger.debug("%s, %s, %s, %s" % (name, cmdline, dir_, output)) 
+        self.tasks.append({'name': name, 'cmdline': cmdline, 'dir': dir_, 'output': output})
 
 
 class TestSymbianLog(unittest.TestCase):