From b98a2ffb2074077b5ebf4275c50c468b49f257fb Mon Sep 17 00:00:00 2001 From: Paul Aswa Date: Fri, 25 May 2018 08:36:35 +0300 Subject: [PATCH] Don't save by default Bump up version to 0.3.2 --- pyconfigreader/reader.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyconfigreader/reader.py b/pyconfigreader/reader.py index 13ece1a..5bd6390 100644 --- a/pyconfigreader/reader.py +++ b/pyconfigreader/reader.py @@ -662,7 +662,7 @@ def to_file(self): DeprecationWarning) self.save() - def close(self, save=True): + def close(self, save=False): """Close the file-like object Saves contents to file on disk first. diff --git a/setup.py b/setup.py index 06c9fa2..3393e44 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ long_description = 'Usage available at http://github.com/giantas/pyconfigreader' setup(name='pyconfigreader', - version='0.3.1', + version='0.3.2', description='A simple module for handling configurations and config files', long_description=long_description, url='http://github.com/giantas/pyconfigreader',