Changeset c440320
- Timestamp:
- 2013-02-25T20:38:05Z (12 years ago)
- Branches:
- master
- Children:
- 36f6ab3
- Parents:
- 0e788f5
- git-author:
- Leho Kraav <leho@…> (25-02-13 20:38:05)
- git-committer:
- Miklos Vajna <vmiklos@…> (25-02-13 20:38:05)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/skype/skyped.py
r0e788f5 rc440320 257 257 258 258 if options.debug: 259 sanitized = msg 260 259 261 try: 260 262 print now + ": " + msg … … 268 270 sanitized = "[unable to print debug message]" 269 271 print now + "~=" + sanitized 272 273 if options.log: 274 sock = open(options.log, "a") 275 sock.write("%s skyped: %s\n" % (now, sanitized)) 276 sock.close() 277 270 278 sys.stdout.flush() 271 if options.log:272 sock = open(options.log, "a")273 sock.write("%s: %s\n" % (now, msg))274 sock.close()275 279 276 280 class MockedSkype:
Note: See TracChangeset
for help on using the changeset viewer.