summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimothy Crosley <timothy.crosley@gmail.com>2014-08-04 10:54:16 -0400
committerTimothy Crosley <timothy.crosley@gmail.com>2014-08-04 10:54:16 -0400
commitdbc817f46529113328f2cbc8d1d83bd4139b54e0 (patch)
tree2cd9667d10db0eb1eaafbe8b36d460c743724353
parent0904e78547f098862000e1e1a4b6b124d3f2e3c1 (diff)
downloadisort-feature/fix-issue-172.tar.gz
Switch default to 79 characters to be consistent with pep8feature/fix-issue-172
-rw-r--r--isort/settings.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/isort/settings.py b/isort/settings.py
index 3da46f31..96071712 100644
--- a/isort/settings.py
+++ b/isort/settings.py
@@ -43,7 +43,7 @@ WrapModes = namedtuple('WrapModes', WrapModes)(*range(len(WrapModes)))
# Note that none of these lists must be complete as they are simply fallbacks for when included auto-detection fails.
default = {'force_to_top': [],
'skip': ['__init__.py', ],
- 'line_length': 80,
+ 'line_length': 79,
'known_standard_library': ["abc", "anydbm", "argparse", "array", "asynchat", "asyncore", "atexit", "base64",
"BaseHTTPServer", "bisect", "bz2", "calendar", "cgitb", "cmd", "codecs",
"collections", "commands", "compileall", "ConfigParser", "contextlib", "Cookie",