--- a/Project/Project.py Thu Jul 26 18:38:15 2012 +0200 +++ b/Project/Project.py Sun Jul 29 13:41:34 2012 +0200 @@ -1891,8 +1891,12 @@ try: ms = os.path.join(self.ppath, self.pdata["MAINSCRIPT"][0]) if not os.path.exists(ms): - f = open(ms, "w") - f.close() + try: + f = open(ms, "w") + f.close() + except IOError: + # silently ignore it + pass self.appendFile(ms) except IndexError: ms = ""