diff options
Diffstat (limited to 'Lib/pprint.py')
-rw-r--r-- | Lib/pprint.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/pprint.py b/Lib/pprint.py index 93d850aca1..c48465b8d5 100644 --- a/Lib/pprint.py +++ b/Lib/pprint.py @@ -194,7 +194,7 @@ class PrettyPrinter: else: write('(') endchar = ')' - if self._indent_per_level > 1: + if self._indent_per_level > 1 and sepLines: write((self._indent_per_level - 1) * ' ') if length: context[objid] = 1 |