commit 342fc299e92dc668e3af9e5c6358d012a3996ba7
parent 11fe9b33ef02ee5a0ce605c4a567667087ed6d86
Author: nolash <dev@holbrook.no>
Date: Sat, 7 Nov 2020 18:51:49 +0100
Make string dump output compatible with env var load
Diffstat:
3 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/CHANGELOG b/CHANGELOG
@@ -1,3 +1,5 @@
+0.3.0
+ - Remove spaces around equals sign in string dump
0.2.7
- Remove stray shebang in module file
0.2.6
diff --git a/confini/config.py b/confini/config.py
@@ -169,7 +169,7 @@ class Config:
except:
v = self.store[k]
- ls.append('{} = {}'.format(k, v))
+ ls.append('{}={}'.format(k, v))
return '\n'.join(ls)
diff --git a/setup.py b/setup.py
@@ -6,7 +6,7 @@ f.close()
setup(
name='confini',
- version='0.2.7',
+ version='0.3.0',
description='Parse, verify and merge all ini files in a single directory',
author='Louis Holbrook',
author_email='dev@holbrook.no',