r391 - trunk/sources/trac/user_prefs_hook_plugin/0.11/userprefshook

roh at daksha.openmoko.org roh at daksha.openmoko.org
Tue Sep 23 19:53:52 CEST 2008


Author: roh
Date: 2008-09-23 17:53:51 +0000 (Tue, 23 Sep 2008)
New Revision: 391

Modified:
   trunk/sources/trac/user_prefs_hook_plugin/0.11/userprefshook/filter.py
Log:
 nonblocking please


Modified: trunk/sources/trac/user_prefs_hook_plugin/0.11/userprefshook/filter.py
===================================================================
--- trunk/sources/trac/user_prefs_hook_plugin/0.11/userprefshook/filter.py	2008-09-21 00:53:27 UTC (rev 390)
+++ trunk/sources/trac/user_prefs_hook_plugin/0.11/userprefshook/filter.py	2008-09-23 17:53:51 UTC (rev 391)
@@ -9,8 +9,8 @@
     def pre_process_request(self, req, handler):
         if req.path_info == '/prefs' and req.method == 'POST':
 #            self.log.info('invoking PRE /bin/touch req.path_info = %s req.method = %s req.args = %s' % (req.path_info, req.method, req.args))
-            self.log.info('saving user prefs -> calling hook /var/www/bin/mail_fullname_sync/run.sh');
-            os.system("/var/www/bin/mail_fullname_sync/run.sh ")
+            self.log.info('saving user prefs -> calling hook /var/www/bin/mail_fullname_sync/run.sh &');
+            os.system("/var/www/bin/mail_fullname_sync/run.sh & ")
         return handler
 
     def post_process_request(self, req, template, data, content_type):




More information about the webdesign-commitlog mailing list