Remove a debugging leftover.

pull/252/merge
nicm 2017-02-07 18:06:42 +00:00
parent 6ea36afc4b
commit 20f5e377fb
1 changed files with 2 additions and 3 deletions

View File

@ -859,9 +859,8 @@ format_replace(struct format_tree *ft, const char *key, size_t keylen,
*ptr = '\0';
found = format_find(ft, copy + 1, modifiers);
if (found == NULL) {
log_debug("XXX %s", copy + 1);
found = format_expand(ft, copy + 1);}
if (found == NULL)
found = format_expand(ft, copy + 1);
if (format_choose(ptr + 1, &left, &right) != 0)
goto fail;