Skip to content

Commit

Permalink
fix log_message
Browse files Browse the repository at this point in the history
  • Loading branch information
ksanislo committed Dec 20, 2018
1 parent cfd87b1 commit 355efcf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tcc-exporter
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ class Client(object):
class Server(BaseHTTPRequestHandler):
# Simplified logging
def log_message(self, format, *args):
print('%s\n' % format%args)
print(format % args)

def do_GET(self):
results = bytes()
Expand Down

0 comments on commit 355efcf

Please sign in to comment.