aboutsummaryrefslogtreecommitdiff
path: root/dfrf.py
blob: 9f1df9b2e15423470568c4441b2cc7f86c520179 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/env python

'''
# Secondary file

A program to retrieve the definition of a french word (in french language).
Only the first defintion, have a look at dfr.py to the main file.
'''

import sys
import os


if __name__ == '__main__':
    import sys
    if  sys.executable:
        os.execlp(sys.executable, 'python', os.getcwd() + '/dfr.py', *sys.argv[1:], '-f')