summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorRob Dennis <rdennis@gmail.com>2014-03-01 12:28:41 -0500
committerRob Dennis <rdennis@gmail.com>2014-03-01 12:28:41 -0500
commit528dc220fd5864a0453258a63b49b64f7de9a0f1 (patch)
treebeab7f1b08bf5b9ce29034f69ab2d3ca12d09338 /docs
parentd7fbe58b3ad2ab4f33cc730fc5e57606d8e9c915 (diff)
downloadconfigobj-git-528dc220fd5864a0453258a63b49b64f7de9a0f1.tar.gz
corrected os.linesep documentation
os.sep is used for path seperation, os.linesep is used for line separation
Diffstat (limited to 'docs')
-rw-r--r--docs/configobj.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/configobj.rst b/docs/configobj.rst
index e6bf5de..2502a92 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.