From 96078f29de8c9bb845be672d07deab0371477993 Mon Sep 17 00:00:00 2001
From: Alexander Cherniuk <ts33kr@gmail.com>
Date: Wed, 4 Aug 2010 11:37:01 +0300
Subject: [PATCH] A bit more precise name for the polling interval

---
 src/command_system/implementation/execute.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/command_system/implementation/execute.py b/src/command_system/implementation/execute.py
index f6029bed20..c46ebb967c 100644
--- a/src/command_system/implementation/execute.py
+++ b/src/command_system/implementation/execute.py
@@ -45,7 +45,7 @@ class Execute(CommandContainer):
 
     DIRECTORY = "~"
 
-    POLL_TIME = 100
+    POLL_INTERVAL = 100
     POLL_COUNT = 5
 
     @command("exec", raw=True)
@@ -63,7 +63,7 @@ class Execute(CommandContainer):
     @classmethod
     def monitor(cls, processor, popen):
         poller = cls.poller(processor, popen)
-        timeout_add(cls.POLL_TIME, poller.next)
+        timeout_add(cls.POLL_INTERVAL, poller.next)
 
     @classmethod
     def poller(cls, processor, popen):
-- 
GitLab