mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-21 13:57:51 +00:00
77b3ab019d
Thanks to dstufft for the suggestion. I know this can make it slightly easier to run tahoe in some funny environments (where an appropriate "python" is on your path but the generated "tahoe" executable is not).
7 lines
101 B
Python
7 lines
101 B
Python
import sys
|
|
|
|
from allmydata.scripts.runner import run
|
|
|
|
if __name__ == "__main__":
|
|
sys.exit(run())
|