mirror of https://github.com/python/cpython
bpo-31583: Fix 2to3 for using with --add-suffix option (GH-3758)
This commit is contained in:
parent
e5362eaa75
commit
e3a523a0fa
|
@ -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)
|
||||
|
|
|
@ -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.
|
Loading…
Reference in New Issue