mirror of
https://github.com/sshuttle/sshuttle.git
synced 2024-11-26 01:43:29 +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()
|