profile: remove now useless indent
We no longer rely on the value of '_output' so we can remove this conditional.
--- a/mercurial/profiling.py Mon Jun 12 17:14:56 2017 +0200
+++ b/mercurial/profiling.py Mon Jun 12 17:15:43 2017 +0200
@@ -213,14 +213,13 @@
if self._profiler is None:
return
self._profiler.__exit__(exception_type, exception_value, traceback)
- if self._output:
- if self._output == 'blackbox':
- val = 'Profile:\n%s' % self._fp.getvalue()
- # ui.log treats the input as a format string,
- # so we need to escape any % signs.
- val = val.replace('%', '%%')
- self._ui.log('profile', val)
- self._closefp()
+ if self._output == 'blackbox':
+ val = 'Profile:\n%s' % self._fp.getvalue()
+ # ui.log treats the input as a format string,
+ # so we need to escape any % signs.
+ val = val.replace('%', '%%')
+ self._ui.log('profile', val)
+ self._closefp()
def _closefp(self):
if self._fpdoclose and self._fp is not None: