1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-11-10 11:25:04 -05:00

Auto-Select [%s] from %s

This commit is contained in:
Reinhard Pointner 2016-11-27 04:59:24 +08:00
parent 5f49f53ec3
commit a1d024b097

View File

@ -586,7 +586,7 @@ public abstract class ScriptShellBaseClass extends Script {
}
// just pick the first option if we can't ask the user
log.log(Level.CONFIG, format("Auto-Select %s from %s", options.iterator().next(), options));
log.log(Level.CONFIG, format("Auto-Select [%s] from %s", options.iterator().next(), options));
return options.iterator().next();
}