File indexing completed on 2024-04-28 17:02:23

0001 # -*- coding: UTF-8 -*-
0002 
0003 """
0004 Insert fallback import paths in scripts for Spanish language.
0005 
0006 Used within scripts for Spanish language like its counterpart
0007 for general scripts (scripts/fallback_import_paths.py).
0008 
0009 @author: Chusslove Illich (Часлав Илић) <caslav.ilic@gmx.net>
0010 @license: GPLv3
0011 """
0012 
0013 import sys
0014 from os.path import realpath, sep
0015 
0016 pologypath = sep.join(realpath(sys.argv[0]).split(sep)[:-4])
0017 sys.path.insert(0, pologypath)
0018