mirror of
https://github.com/mapnik/mapnik.git
synced 2025-12-08 20:13:09 +00:00
5 lines
143 B
Python
5 lines
143 B
Python
import os, sys, inspect
|
|
|
|
def execution_path(filename):
|
|
return os.path.join(os.path.dirname(sys._getframe(1).f_code.co_filename), filename)
|