diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-06-16 19:01:04 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-06-16 19:01:04 +0300 |
commit | fa77ad4c118c9160b7b8ae4a4aec53589f26c1a7 (patch) | |
tree | d640de410e1e3b98fe1f39df27878cdf3e2f07b2 | |
parent | workflows/ci: rename to "CI" (diff) | |
download | cgitize-fa77ad4c118c9160b7b8ae4a4aec53589f26c1a7.tar.gz cgitize-fa77ad4c118c9160b7b8ae4a4aec53589f26c1a7.zip |
what? how did this work?
-rw-r--r-- | cgitize/git.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cgitize/git.py b/cgitize/git.py index 78679d7..5acac20 100644 --- a/cgitize/git.py +++ b/cgitize/git.py @@ -62,7 +62,7 @@ class Config: return name def format(self): - result = '[self.format_name(self.name)]\n' + result = f'[self.format_name(self.name)]\n' result += ''.join((var.format() for var in self.variables)) return result |