Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tsproxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
def PrintMessage(msg):
# Print the message to stdout & flush to make sure that the message is not
# buffered when tsproxy is run as a subprocess.
sys.stdout.write(msg)
sys.stdout.write(msg + '\n')
sys.stdout.flush()

########################################################################################################################
Expand Down Expand Up @@ -721,7 +721,7 @@ def main():
# Parse any port mappings
if options.mapports:
SetPortMappings(options.mapports)

if options.nodnscache:
dns_cache = None

Expand Down