Differences From Artifact [6a76dc767a]:
- File make.py — part of check-in [f91f4879a1] at 2018-02-17 09:56:01 on branch multid — [build][core] add options for extended and personal dictionaries (user: olr, size: 21552) [annotate] [blame] [check-ins using] [more...]
To Artifact [dbe9299caf]:
- File make.py — part of check-in [a502aa20c3] at 2018-03-01 07:57:50 on branch trunk — [build] display hour at the end of the build process (user: olr, size: 21723) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
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()
|