changeset 33761:41b081ac2145

profiling: cope with configwith default value handling changes Changeset 6ff6eb33f353 change 'configwith' behavior so that the default value is run through the conversion function. In parallel a new user of 'configwith' got introduced unaware of this coming behavior change. This broke profiling. We resolve the situation by having the new conversion function cope with a default value already using the right type.
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Wed, 21 Jun 2017 10:46:18 +0200
parents 27ba0d8dc26c
children 66117dae87f9
files mercurial/profiling.py
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/profiling.py
+++ b/mercurial/profiling.py
@@ -126,6 +126,8 @@
         kwargs = {}
 
         def fraction(s):
+            if isinstance(s, (float, int)):
+                return float(s)
             if s.endswith('%'):
                 v = float(s[:-1]) / 100
             else: