You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@gump.apache.org by ma...@apache.org on 2020/11/27 17:10:48 UTC

svn commit: r1883871 - /gump/live/python/gump/core/run/actor.py

Author: markt
Date: Fri Nov 27 17:10:48 2020
New Revision: 1883871

URL: http://svn.apache.org/viewvc?rev=1883871&view=rev
Log:
Tabs to 4 spaces

Modified:
    gump/live/python/gump/core/run/actor.py

Modified: gump/live/python/gump/core/run/actor.py
URL: http://svn.apache.org/viewvc/gump/live/python/gump/core/run/actor.py?rev=1883871&r1=1883870&r2=1883871&view=diff
==============================================================================
--- gump/live/python/gump/core/run/actor.py (original)
+++ gump/live/python/gump/core/run/actor.py Fri Nov 27 17:10:48 2020
@@ -17,15 +17,15 @@
 # limitations under the License.
 
 """
-	An actor works upon the context tree. Events (and in the future,
-	perhaps Requests) are passed to the Actor, and the Actor performs
-	it's work.
-	
-	Example actors are:
-	
-		Statistician (keeps track of statistics, in a DB)
-		TimeKeeper (keeps track of time spent on various things)
-		Documenter (writes HTML for the work)
+    An actor works upon the context tree. Events (and in the future,
+    perhaps Requests) are passed to the Actor, and the Actor performs
+    it's work.
+    
+    Example actors are:
+    
+        Statistician (keeps track of statistics, in a DB)
+        TimeKeeper (keeps track of time spent on various things)
+        Documenter (writes HTML for the work)
 """
 
 import os.path
@@ -168,11 +168,11 @@ class AbstractRunActor(RunActor):
         
         # Hack for bad data.
         if project.inModule():   
-        	self.log.debug('Process Project [' + `project` + '] using [' + `self` + ']')        
-        	self.processProject(project)
-     	else:
+            self.log.debug('Process Project [' + `project` + '] using [' + `self` + ']')        
+            self.processProject(project)
+         else:
             self.log.debug('Skip Project (not in module) [' + `project` + '] for [' + `self` + ']')        
-        	   
+               
     def _processOtherEvent(self,event):
         """
         Call a method called 'processOtherEvent(event)', if it