216 fname = os.path.join(pdir, "__init__.py") |
216 fname = os.path.join(pdir, "__init__.py") |
217 if not os.path.exists(fname): |
217 if not os.path.exists(fname): |
218 if not os.path.exists(pdir): |
218 if not os.path.exists(pdir): |
219 os.mkdir(pdir, 0o755) |
219 os.mkdir(pdir, 0o755) |
220 f = open(fname, "w", encoding = "utf-8") |
220 f = open(fname, "w", encoding = "utf-8") |
221 f.write(\ |
221 f.write( |
222 '''# -*- coding: utf-8 -*- |
222 '''# -*- coding: utf-8 -*- |
223 |
223 |
224 """ |
224 """ |
225 Package containing the global plugins. |
225 Package containing the global plugins. |
226 """ |
226 """ |