1155 |
1155 |
1156 if not os.path.exists(cfgFile): |
1156 if not os.path.exists(cfgFile): |
1157 try: |
1157 try: |
1158 with open(cfgFile, "w") as f: |
1158 with open(cfgFile, "w") as f: |
1159 f.write("[global]\n") |
1159 f.write("[global]\n") |
1160 except (IOError, OSError): |
1160 except OSError: |
1161 # ignore these |
1161 # ignore these |
1162 pass |
1162 pass |
1163 |
1163 |
1164 # check, if the destination is writeable |
1164 # check, if the destination is writeable |
1165 if not os.access(cfgFile, os.W_OK): |
1165 if not os.access(cfgFile, os.W_OK): |