# HG changeset patch # User RhodeCode Admin # Date 2023-05-11 10:00:33 # Node ID b08943510e1575f9999f77895261b3cb16da9a72 # Parent 5218c510185fd5d42fdd590bfe79b7aa252e03f2 fstring: improved formatting diff --git a/rhodecode/apps/debug_style/__init__.py b/rhodecode/apps/debug_style/__init__.py --- a/rhodecode/apps/debug_style/__init__.py +++ b/rhodecode/apps/debug_style/__init__.py @@ -26,7 +26,7 @@ class DebugStylePredicate(object): self.val = val def text(self): - return 'debug style route = %s' % self.val + return f'debug style route = {self.val}' phash = text