summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/configobj.rst2
-rw-r--r--setup.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/configobj.rst b/docs/configobj.rst
index 763fee2..e5488be 100644
--- a/docs/configobj.rst
+++ b/docs/configobj.rst
@@ -895,7 +895,7 @@ newlines
When a config file is read, ConfigObj records the type of newline separators in the
file and uses this separator when writing. It defaults to ``None``, and ConfigObj
-uses the system default (``os.sep``) if write is called without newlines having
+uses the system default (``os.linesep``) if write is called without newlines having
been set.
diff --git a/setup.py b/setup.py
index 6825606..585dafe 100644
--- a/setup.py
+++ b/setup.py
@@ -90,7 +90,7 @@ KEYWORDS = "config, ini, dictionary, application, admin, sysadmin, configuration
setup(name=NAME,
version=VERSION,
- install_requires=['six==1.5.2'],
+ install_requires=['six'],
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
author=AUTHOR,