Show
Ignore:
Timestamp:
07/19/07 19:51:20 (1 year ago)
Author:
edsuom
Message:

Giving up on ill-conceived attempt to load arbitrary services

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • projects/twisted-goodies/trunk/postsetup.py

    r12 r39  
    11""" 
    22Post setup operations 
     3 
     4Copyright (C) 2006-2007 by Edwin A. Suominen, http://www.eepatents.com 
     5 
     6This program is free software; you can redistribute it and/or modify it under 
     7the terms of the GNU General Public License as published by the Free Software 
     8Foundation; either version 2 of the License, or (at your option) any later 
     9version. 
     10 
     11This program is distributed in the hope that it will be useful, but WITHOUT ANY 
     12WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A 
     13PARTICULAR PURPOSE.  See the file COPYING for more details. 
     14 
     15You should have received a copy of the GNU General Public License along with 
     16this program; if not, write to the Free Software Foundation, Inc., 51 Franklin 
     17Street, Fifth Floor, Boston, MA 02110-1301, USA 
     18 
    319""" 
    420 
     
    2743     
    2844    def prepareDirectory(self, dirParts): 
    29         for k in xrange(len(dirParts)-1): 
     45        for k in xrange(len(dirParts)): 
    3046            thisDir = os.path.join(*dirParts[:k+1]) 
    3147            if not os.path.exists(thisDir):