Skip to content

Commit

Permalink
Make "No values found" warning more obvious (#116)
Browse files Browse the repository at this point in the history
  • Loading branch information
akx authored Dec 29, 2023
1 parent b044bc9 commit c85961c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dynamicprompts/samplers/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def get_wildcard_not_found_fallback(
"""
Logs a warning, then infinitely yields the wrapped wildcard.
"""
logger.warning(f"No values found for wildcard {command.wildcard}")
logger.warning(f"No values found for wildcard {command.wildcard!r}")
wrapped_wildcard = context.wildcard_manager.to_wildcard(command.wildcard)
res = SamplingResult(text=wrapped_wildcard)
while True:
Expand Down

0 comments on commit c85961c

Please sign in to comment.