Mercurial > public > mercurial-scm > hg
comparison mercurial/dispatch.py @ 34486:a57c938e7ac8
style: never use a space before a colon or comma
Differential Revision: https://phab.mercurial-scm.org/D954
author | Alex Gaynor <agaynor@mozilla.com> |
---|---|
date | Fri, 29 Sep 2017 15:48:34 +0000 |
parents | bd50aa1aa035 |
children | b09b3eaf9c96 |
comparison
equal
deleted
inserted
replaced
34485:37b7581e5737 | 34486:a57c938e7ac8 |
---|---|
241 (req.args,)) | 241 (req.args,)) |
242 | 242 |
243 try: | 243 try: |
244 debugger = 'pdb' | 244 debugger = 'pdb' |
245 debugtrace = { | 245 debugtrace = { |
246 'pdb' : pdb.set_trace | 246 'pdb': pdb.set_trace |
247 } | 247 } |
248 debugmortem = { | 248 debugmortem = { |
249 'pdb' : pdb.post_mortem | 249 'pdb': pdb.post_mortem |
250 } | 250 } |
251 | 251 |
252 # read --config before doing anything else | 252 # read --config before doing anything else |
253 # (e.g. to change trust settings for reading .hg/hgrc) | 253 # (e.g. to change trust settings for reading .hg/hgrc) |
254 cfgs = _parseconfig(req.ui, _earlygetopt(['--config'], req.args)) | 254 cfgs = _parseconfig(req.ui, _earlygetopt(['--config'], req.args)) |