Fixed typo on French translation of templates/sub-reject.fr. Thanks to Julien Danjou.
[eoc.git] / enemies-of-carlotta
1 #!/usr/bin/python
2 #
3 # This file works as the Enemies of Carlotta startup wrapper. The real
4 # program is in eoc.py, stored in SHAREDIR (see below). It is large enough
5 # that the time Python takes to parse and compile it to bytecode is
6 # significant, therefore we use a very short wrapper (this file) and
7 # install eoc.py in a way that allows it to be compiled, thus reducing
8 # startup time.
9
10 SHAREDIR="."
11
12 import sys
13 sys.path.insert(0, SHAREDIR)
14
15 import eoc
16 eoc.main(sys.argv[1:])