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

thgstatus: require paths for --notify option

use 'hg thgstatus --notify .' for current dir

Changeset 4bc251bc2c50

Parent a961a823bb4f

by Adrian Buehlmann

Changes to one file · Browse files at 4bc251bc2c50 Showing diff from parent a961a823bb4f Diff from another changeset...

 
98
99
100
101
 
102
103
104
 
106
107
108
109
 
110
111
112
113
 
114
 
98
99
100
 
101
102
103
104
 
106
107
108
 
109
110
111
112
 
113
114
@@ -98,7 +98,7 @@
  from mercurial import demandimport   demandimport.disable()   from thgutil import shlib - shlib.shell_notify([os.getcwd()]) + shlib.shell_notify(opts.get('notify'))   demandimport.enable()   ui.note("thgstatus updated\n")   @@ -106,9 +106,9 @@
  'thgstatus':   (thgstatus,   [ ('', 'delay', None, _('wait until the second ticks over')), - ('n', 'notify', None, _('notify the shell')), + ('n', 'notify', [], _('notify the shell for path(s) given')),   ('', 'remove', None, _('remove the status file')),   ('s', 'show', None, _('just show the contents of '   'the status file (no update)')) ], - _('hg thgstatus')), + _('hg thgstatus [OPTION]...')),  }