[issue21280] shutil.make_archive() with default root_dir parameter raises FileNotFoundError: [Errno 2] No such file or directory: ''

2014-11-27 Thread Roundup Robot
Roundup Robot added the comment: New changeset 8fa9097eadcb by Serhiy Storchaka in branch '3.4': Issue #21280: Fixed a bug in shutil.make_archive() when create an archive of https://hg.python.org/cpython/rev/8fa9097eadcb New changeset c605dcf9786f by Serhiy Storchaka in branch 'default': Issue

[issue21280] shutil.make_archive() with default root_dir parameter raises FileNotFoundError: [Errno 2] No such file or directory: ''

2014-11-27 Thread Serhiy Storchaka
Changes by Serhiy Storchaka storch...@gmail.com: -- resolution: - fixed stage: patch review - resolved status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue21280 ___

[issue21280] shutil.make_archive() with default root_dir parameter raises FileNotFoundError: [Errno 2] No such file or directory: ''

2014-11-18 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Here is a patch. -- assignee: - serhiy.storchaka keywords: +patch nosy: +hynek, serhiy.storchaka, tarek stage: - patch review type: - behavior versions: +Python 3.5 Added file: http://bugs.python.org/file37223/shutil_make_archive_in_curdir.patch

[issue21280] shutil.make_archive() with default root_dir parameter raises FileNotFoundError: [Errno 2] No such file or directory: ''

2014-04-17 Thread Martin Panter
New submission from Martin Panter: from shutil import make_archive; make_archive(a, tar) Traceback (most recent call last): File stdin, line 1, in module File /usr/lib/python3.4/shutil.py, line 783, in make_archive filename = func(base_name, base_dir, **kwargs) File