bpo-31583: Fix 2to3 for using with --add-suffix option (GH-3758) (GH-6529)

(cherry picked from commit e3a523a0fa)

Co-authored-by: Denis Osipov <osipov_d@list.ru>
This commit is contained in:
Miss Islington (bot) 2018-04-18 22:09:51 -07:00 committed by Łukasz Langa
parent e735634ea4
commit 1957e7b76a
2 changed files with 3 additions and 1 deletions

View File

@ -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)

View File

@ -0,0 +1,2 @@
Fix 2to3 for using with --add-suffix option but without --output-dir
option for relative path to files in current directory.