From 5dfc860e1ee41d62711301293f97e149e21e6ede Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Wed, 25 Jan 2017 16:31:56 -0500 Subject: [PATCH] fix for python 2.6 --- pipenv/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipenv/utils.py b/pipenv/utils.py index 390275f6..447a9041 100644 --- a/pipenv/utils.py +++ b/pipenv/utils.py @@ -10,7 +10,7 @@ def format_toml(data): for i, line in enumerate(data): if i > 0: if line.startswith('['): - data[i] = '\n{}'.format(line) + data[i] = '\n{0}'.format(line) return '\n'.join(data)