mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-22 14:22:25 +00:00
6 lines
118 B
Python
6 lines
118 B
Python
|
|
import os.path
|
|
|
|
def sibling(filename):
|
|
return os.path.join(os.path.dirname(os.path.abspath(__file__)), filename)
|