mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-24 08:41:16 +00:00
6 lines
127 B
Python
6 lines
127 B
Python
import os
|
|
import sys
|
|
|
|
def get_file_in_script_dir(fn):
|
|
return os.path.join(os.path.dirname(os.path.abspath(sys.argv[0])), fn)
|