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

This commit is contained in:
Denis Osipov 2018-04-19 04:50:25 +05:00 committed by Łukasz Langa
parent e5362eaa75
commit e3a523a0fa
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.