Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8, 0.8.1, and 0.8.2

thgtaskbar: introduce new error command (over pipe)

just puts the error text provided as first argument
in the logger

Changeset 532f8319626b

Parent d8d38b17809a

by Adrian Buehlmann

Changes to one file · Browse files at 532f8319626b Showing diff from parent d8d38b17809a Diff from another changeset...

Change 1 of 1 Show Entire File thgtaskbar.py Stacked
 
317
318
319
 
 
320
321
 
322
323
324
 
317
318
319
320
321
322
 
323
324
325
326
@@ -317,8 +317,10 @@
  update(args, hwnd)   elif cmd == 'remove':   remove(args) + elif cmd == 'error': + logger.msg("**** Error: %s" % args[0])   else: - logger.msg("Error: unknown request '%s'" % req) + logger.msg("**** Error: unknown request '%s'" % req)    class Updater(threading.Thread):   def __init__(self, hwnd):