Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions cfbs/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,11 @@
is_a_commit_hash,
)

from cfbs.args import get_args
from cfbs.pretty import (
pretty,
pretty_check_file,
pretty_file,
CFBS_DEFAULT_SORTING_RULES,
TOP_LEVEL_KEYS,
MODULE_KEYS,
)
from cfbs.build import (
init_out_folder,
Expand All @@ -55,7 +52,6 @@
from cfbs.git import (
git_exists,
is_git_repo,
git_commit,
git_get_config,
git_set_config,
git_init,
Expand Down Expand Up @@ -780,8 +776,8 @@ def update_command(to_update):
input_data = read_json(input_path)
if input_data == None:
log.debug(
"Skipping input update for module '%s': "
+ "No input found in '%s'" % (module["name"], input_path)
"Skipping input update for module '%s': " % module["name"]
+ "No input found in '%s'" % input_path
)
else:
try:
Expand Down