From 47226bb4b01cfc1d394190859d62eb862d28433a Mon Sep 17 00:00:00 2001 From: Nathan Baker Date: Mon, 25 May 2020 11:29:11 -0700 Subject: [PATCH] Fix deprecated string syntax. --- propka/output.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/propka/output.py b/propka/output.py index 8419cb6..85f807e 100644 --- a/propka/output.py +++ b/propka/output.py @@ -239,7 +239,7 @@ def get_folding_profile_section(protein, conformation='AVR', str_ += "Could not determine pH values where the free energy" str_ += " is within 80 %s of minimum\n" % ("%") else: - str_ += "The free energy is within 80 \% of maximum" + str_ += "The free energy is within 80 %% of maximum" str_ += " at pH %4.1lf to %4.1lf\n" % (dg_min, dg_max) if ph_min is None or ph_max is None: str_ += "Could not determine the pH-range where the free"