mirror of
https://github.com/onionshare/onionshare.git
synced 2025-06-06 22:09:15 -04:00
using __file__ instead of inspect.getfile(inspect.currentframe())
This commit is contained in:
parent
f57207200e
commit
99c444dc4d
1 changed files with 3 additions and 4 deletions
|
@ -1,11 +1,10 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
|
|
||||||
import os, sys, subprocess, time, hashlib, inspect, platform
|
import os, sys, subprocess, time, hashlib, platform
|
||||||
from random import randint
|
from random import randint
|
||||||
from functools import wraps
|
from functools import wraps
|
||||||
|
|
||||||
lib_path = os.path.dirname(os.path.abspath(inspect.getfile(inspect.currentframe())))+'/lib'
|
sys.path.append(os.path.dirname(__file__)+'/lib')
|
||||||
sys.path.append(lib_path)
|
|
||||||
|
|
||||||
from stem.control import Controller
|
from stem.control import Controller
|
||||||
from stem import SocketError
|
from stem import SocketError
|
||||||
|
@ -44,7 +43,7 @@ def get_hidden_service_dir(port):
|
||||||
else:
|
else:
|
||||||
temp = 'C:/tmp'
|
temp = 'C:/tmp'
|
||||||
return "{0}/onionshare_hidden_service_{1}".format(temp, port)
|
return "{0}/onionshare_hidden_service_{1}".format(temp, port)
|
||||||
|
|
||||||
return "/tmp/onionshare_hidden_service_{0}".format(port)
|
return "/tmp/onionshare_hidden_service_{0}".format(port)
|
||||||
|
|
||||||
def get_hidden_service_hostname(port):
|
def get_hidden_service_hostname(port):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue