Changeset 472


Ignore:
Timestamp:
09/05/08 10:02:59 (5 years ago)
Author:
fma
Message:

Added windows mkdir test error

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/common/config.py

    r469 r472  
    1010 
    1111This software is governed by the B{CeCILL} license under French law and 
    12 abiding by the rules of distribution of free software.  You can  use,  
     12abiding by the rules of distribution of free software.  You can  use, 
    1313modify and/or redistribute the software under the terms of the CeCILL 
    1414license as circulated by CEA, CNRS and INRIA at the following URL 
     
    1919with a limited warranty  and the software's author,  the holder of the 
    2020economic rights,  and the successive licensors  have only  limited 
    21 liability.  
     21liability. 
    2222 
    2323In this respect, the user's attention is drawn to the risks associated 
     
    2828professionals having in-depth computer knowledge. Users are therefore 
    2929encouraged to load and test the software's suitability as regards their 
    30 requirements in conditions enabling the security of their systems and/or  
    31 data to be ensured and,  more generally, to use and operate it in the  
    32 same conditions as regards security.  
     30requirements in conditions enabling the security of their systems and/or 
     31data to be ensured and,  more generally, to use and operate it in the 
     32same conditions as regards security. 
    3333 
    3434The fact that you are presently reading this means that you have had 
     
    5959    os.makedirs(USER_PRESET_DIR) 
    6060except OSError, (errno, errmsg): 
    61     if errno == 17: # dir already exists 
     61    if errno in (17, 183): # dir already exists 
    6262        pass 
    6363    else: 
Note: See TracChangeset for help on using the changeset viewer.