mirror of
https://github.com/sshuttle/sshuttle.git
synced 2025-01-03 20:49:02 +01:00
915a96b0ec
There still seem to be some weird timing and/or closing-related bugs, since I can't load the eqldata project correctly unless I use --noserver.
9 lines
126 B
Python
9 lines
126 B
Python
import sys, os
|
|
|
|
logprefix = ''
|
|
|
|
def log(s):
|
|
sys.stdout.flush()
|
|
sys.stderr.write(logprefix + s)
|
|
sys.stderr.flush()
|