From efdc5b02dd49956632c2ba4ac24665d72e19c454 Mon Sep 17 00:00:00 2001 From: Serge Rehbinder Date: Tue, 10 Jan 2017 10:46:37 +0100 Subject: [PATCH] package bug fix --- commands/package.py | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/commands/package.py b/commands/package.py index 35a6fc1..69c079c 100644 --- a/commands/package.py +++ b/commands/package.py @@ -963,12 +963,13 @@ def run(args, runner, logger): d_files_to_add["README"] = (local_readme_tmp_path, "README") # Add the additional files of option add_files - for file_path in options.add_files: - if not os.path.exists(file_path): - msg = _("WARNING: the file %s is not accessible.\n" % file_path) - continue - file_name = os.path.basename(file_path) - d_files_to_add[file_name] = (file_path, file_name) + if options.add_files: + for file_path in options.add_files: + if not os.path.exists(file_path): + msg = _("WARNING: the file %s is not accessible.\n" % file_path) + continue + file_name = os.path.basename(file_path) + d_files_to_add[file_name] = (file_path, file_name) logger.write("\n", 2) -- 2.39.2