2019-08-05 20:11:51 +02:00
|
|
|
#!/usr/bin/python
|
|
|
|
# Copyright 2018 The Tor Project, Inc. See LICENSE file for licensing info.
|
|
|
|
|
|
|
|
# This file is no longer here; see practracker/includes.py for this
|
|
|
|
# functionality. This is a stub file that exists so that older git
|
|
|
|
# hooks will know where to look.
|
|
|
|
|
2019-12-12 06:58:51 +01:00
|
|
|
# Future imports for Python 2.7, mandatory in 3.0
|
|
|
|
from __future__ import division
|
|
|
|
from __future__ import print_function
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2019-08-05 20:11:51 +02:00
|
|
|
import sys, os
|
|
|
|
|
|
|
|
dirname = os.path.split(sys.argv[0])[0]
|
|
|
|
new_location = os.path.join(dirname, "practracker", "includes.py")
|
|
|
|
python = sys.executable
|
|
|
|
|
|
|
|
os.execl(python, python, new_location, *sys.argv[1:])
|