Changeset 472
- Timestamp:
- 09/05/08 10:02:59 (5 years ago)
- File:
-
- 1 edited
-
trunk/common/config.py (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/common/config.py
r469 r472 10 10 11 11 This 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, 12 abiding by the rules of distribution of free software. You can use, 13 13 modify and/or redistribute the software under the terms of the CeCILL 14 14 license as circulated by CEA, CNRS and INRIA at the following URL … … 19 19 with a limited warranty and the software's author, the holder of the 20 20 economic rights, and the successive licensors have only limited 21 liability. 21 liability. 22 22 23 23 In this respect, the user's attention is drawn to the risks associated … … 28 28 professionals having in-depth computer knowledge. Users are therefore 29 29 encouraged 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. 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. 33 33 34 34 The fact that you are presently reading this means that you have had … … 59 59 os.makedirs(USER_PRESET_DIR) 60 60 except OSError, (errno, errmsg): 61 if errno == 17: # dir already exists61 if errno in (17, 183): # dir already exists 62 62 pass 63 63 else:
Note: See TracChangeset
for help on using the changeset viewer.
