Overview
Comment: | [lo] remove print |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | lo | multid |
Files: | files | file ages | folders |
SHA3-256: |
a6c452056b13ca0ed2fb41188f4a57cb |
User & Date: | olr on 2018-02-19 12:39:54 |
Other Links: | branch diff | manifest | tags |
Context
2018-02-19
| ||
12:40 | [lo] dictionaries options: update UI (buggy: file picker crashes) check-in: 19496b5d36 user: olr tags: lo, multid | |
12:39 | [lo] remove print check-in: a6c452056b user: olr tags: lo, multid | |
12:38 | [lo] update: text formatter uses helpers check-in: c88678ec25 user: olr tags: lo, multid | |
Changes
Modified gc_lang/fr/oxt/TextFormatter/TextFormatter.py from [652166f86d] to [744fe2827e].
︙ | ︙ | |||
384 385 386 387 388 389 390 | w = getattr(self, key) dOpt[w.Name] = w.State for w in lWidget: dOpt[w.Name] = w.State # write file sExtPath = helpers.getAbsolutePathOf("/pythonpath/tf_options.py") if os.path.isfile(sExtPath): | < | 384 385 386 387 388 389 390 391 392 393 394 395 396 397 | w = getattr(self, key) dOpt[w.Name] = w.State for w in lWidget: dOpt[w.Name] = w.State # write file sExtPath = helpers.getAbsolutePathOf("/pythonpath/tf_options.py") if os.path.isfile(sExtPath): hOpt = open(sExtPath, "w") hOpt.write("dDefaultOpt = " + str(tf_options.dDefaultOpt) + "\n") hOpt.write("dOpt = " + str(dOpt)) hOpt.close() except: traceback.print_exc() |
︙ | ︙ |