profile: indent part of '__enter__'
authorPierre-Yves David <pierre-yves.david@octobus.net>
Mon, 12 Jun 2017 17:20:48 +0200
changeset 32807 54b356d65079
parent 32806 3a4c677cbd6e
child 32808 336700745a5c
profile: indent part of '__enter__' We are about to introduce a try except. We start with adding the indent to make the next patch clearer.
mercurial/profiling.py
--- a/mercurial/profiling.py	Mon Jun 12 17:15:43 2017 +0200
+++ b/mercurial/profiling.py	Mon Jun 12 17:20:48 2017 +0200
@@ -188,26 +188,27 @@
 
         self._output = self._ui.config('profiling', 'output')
 
-        if self._output == 'blackbox':
-            self._fp = util.stringio()
-        elif self._output:
-            path = self._ui.expandpath(self._output)
-            self._fp = open(path, 'wb')
-        else:
-            self._fpdoclose = False
-            self._fp = self._ui.ferr
+        if True:
+            if self._output == 'blackbox':
+                self._fp = util.stringio()
+            elif self._output:
+                path = self._ui.expandpath(self._output)
+                self._fp = open(path, 'wb')
+            else:
+                self._fpdoclose = False
+                self._fp = self._ui.ferr
 
-        if proffn is not None:
-            pass
-        elif profiler == 'ls':
-            proffn = lsprofile
-        elif profiler == 'flame':
-            proffn = flameprofile
-        else:
-            proffn = statprofile
+            if proffn is not None:
+                pass
+            elif profiler == 'ls':
+                proffn = lsprofile
+            elif profiler == 'flame':
+                proffn = flameprofile
+            else:
+                proffn = statprofile
 
-        self._profiler = proffn(self._ui, self._fp)
-        self._profiler.__enter__()
+            self._profiler = proffn(self._ui, self._fp)
+            self._profiler.__enter__()
 
     def __exit__(self, exception_type, exception_value, traceback):
         if self._profiler is None: