aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--skype/skyped.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/skype/skyped.py b/skype/skyped.py
index 03c05b2d..2e483f08 100644
--- a/skype/skyped.py
+++ b/skype/skyped.py
@@ -146,7 +146,7 @@ def dprint(msg):
print now + ": " + msg
if options.log:
sock = open(options.log, "a")
- sock.write("%s: %s\n" % now, msg)
+ sock.write("%s: %s\n" % (now, msg))
sock.close()
class SkypeApi: