Overview
Comment: | [build] display hour at the end of the build process |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | build |
Files: | files | file ages | folders |
SHA3-256: |
a502aa20c35a6312473580f741c62eb2 |
User & Date: | olr on 2018-03-01 07:57:50 |
Other Links: | manifest | tags |
Context
2018-03-02
| ||
10:12 | [fr] pt: en point d’orgue check-in: b2c28ddb20 user: olr tags: trunk, fr | |
2018-03-01
| ||
07:57 | [build] display hour at the end of the build process check-in: a502aa20c3 user: olr tags: trunk, build | |
2018-02-28
| ||
07:43 | [fx] About panel: add origin to website hyperlink check-in: a890bfa884 user: olr tags: trunk, fx | |
Changes
Modified make.py from [6a76dc767a] to [dbe9299caf].
︙ | ︙ | |||
450 451 452 453 454 455 456 457 458 459 | # Thunderbird if xArgs.thunderbird: os.system("thunderbird -jsconsole -P debug") else: print("Folder not found: gc_lang/"+sLang) if __name__ == '__main__': main() | > > > | 450 451 452 453 454 455 456 457 458 459 460 461 462 | # Thunderbird if xArgs.thunderbird: os.system("thunderbird -jsconsole -P debug") else: print("Folder not found: gc_lang/"+sLang) oNow = datetime.datetime.now() print("============== MAKE GRAMMALECTE [finished] at {0.hour:>2} h {0.minute:>2} min {0.second:>2} s ==============".format(oNow)) if __name__ == '__main__': main() |