etwist/twconfig.py
branchtls-sprint
changeset 1802 d628defebc17
parent 136 ff51a18c66a3
child 1977 606923dff11b
--- a/etwist/twconfig.py	Thu May 14 10:24:56 2009 +0200
+++ b/etwist/twconfig.py	Thu May 14 11:38:40 2009 +0200
@@ -2,13 +2,13 @@
 
 * the "twisted" configuration to get a web application running in a standalone
   twisted web server which talk to a repository server using Pyro
-  
+
 * the "all-in-one" configuration to get a web application running in a twisted
   web server integrating a repository server in the same process (only available
   if the repository part of the software is installed
 
 :organization: Logilab
-:copyright: 2001-2008 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
+:copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
 :contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr
 """
 __docformat__ = "restructuredtext en"
@@ -63,12 +63,12 @@
         ('pyro-server',
          {'type' : 'yn',
           # pyro is only a recommends by default, so don't activate it here
-          'default': False, 
+          'default': False,
           'help': 'run a pyro server',
           'group': 'main', 'inputlevel': 1,
           }),
         ) + WebConfiguration.options)
-    
+
     def server_file(self):
         return join(self.apphome, '%s-%s.py' % (self.appid, self.name))
 
@@ -91,6 +91,6 @@
         def pyro_enabled(self):
             """tell if pyro is activated for the in memory repository"""
             return self['pyro-server']
-        
+
 except ImportError:
     pass