summaryrefslogtreecommitdiffstats
path: root/Lib/lib2to3
diff options
context:
space:
mode:
authorDenis Osipov <osipov_d@list.ru>2018-04-18 23:50:25 (GMT)
committerƁukasz Langa <lukasz@langa.pl>2018-04-18 23:50:25 (GMT)
commite3a523a0fa16aec880880928303bfcbd1fb74bc2 (patch)
tree8325a7ac2e646ab9f21f530c3098c020db87e761 /Lib/lib2to3
parente5362eaa75a154c6e91c5b1c47719d0a0f5ca48b (diff)
downloadcpython-e3a523a0fa16aec880880928303bfcbd1fb74bc2.zip
cpython-e3a523a0fa16aec880880928303bfcbd1fb74bc2.tar.gz
cpython-e3a523a0fa16aec880880928303bfcbd1fb74bc2.tar.bz2
bpo-31583: Fix 2to3 for using with --add-suffix option (GH-3758)
Diffstat (limited to 'Lib/lib2to3')
-rw-r--r--Lib/lib2to3/main.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/lib2to3/main.py b/Lib/lib2to3/main.py
index 1a1df01..d6b7088 100644
--- a/Lib/lib2to3/main.py
+++ b/Lib/lib2to3/main.py
@@ -80,7 +80,7 @@ class StdoutRefactoringTool(refactor.MultiprocessRefactoringTool):
filename += self._append_suffix
if orig_filename != filename:
output_dir = os.path.dirname(filename)
- if not os.path.isdir(output_dir):
+ if not os.path.isdir(output_dir) and output_dir:
os.makedirs(output_dir)
self.log_message('Writing converted %s to %s.', orig_filename,
filename)