mirror of
https://github.com/sshuttle/sshuttle.git
synced 2024-11-25 17:33:15 +01:00
7 lines
98 B
Python
7 lines
98 B
Python
import sys, os
|
|
|
|
def log(s):
|
|
sys.stdout.flush()
|
|
sys.stderr.write(s)
|
|
sys.stderr.flush()
|