Mercurial > evolve
comparison hgext/evolve.py @ 1043:6a7d34010f8f
evolve: re enable progress for all
Progress is an important information for user facing slow push.
author | Pierre-Yves David <pierre-yves.david@fb.com> |
---|---|
date | Fri, 08 Aug 2014 18:15:01 -0700 |
parents | 86bd794f6037 |
children | c878deb2fd73 |
comparison
equal
deleted
inserted
replaced
1042:86bd794f6037 | 1043:6a7d34010f8f |
---|---|
2232 message = 'OBSEXC: ' + message | 2232 message = 'OBSEXC: ' + message |
2233 if important or verbose: | 2233 if important or verbose: |
2234 ui.status(message) | 2234 ui.status(message) |
2235 | 2235 |
2236 def obsexcprg(ui, *args, **kwargs): | 2236 def obsexcprg(ui, *args, **kwargs): |
2237 topic = 'obsmarkers exchange' | |
2237 if ui.configbool('experimental', 'verbose-obsolescence-exchange', False): | 2238 if ui.configbool('experimental', 'verbose-obsolescence-exchange', False): |
2238 ui.progress('OBSEXC', *args, **kwargs) | 2239 topic = 'OBSEXC' |
2240 ui.progress(topic, *args, **kwargs) | |
2239 | 2241 |
2240 | 2242 |
2241 @command('debugobsoleterelevant', | 2243 @command('debugobsoleterelevant', |
2242 [], | 2244 [], |
2243 'REVSET') | 2245 'REVSET') |