Skip to content

Commit

Permalink
fixed log messages
Browse files Browse the repository at this point in the history
  • Loading branch information
Ladislav Slezak committed Jan 17, 2013
1 parent 3843192 commit 48c235b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/add-on_auto.ycp
Expand Up @@ -189,18 +189,18 @@ else if (func == "Write") {

if (!isempty(prod["alias"]:"")) {
alias = prod["alias"]:"";
y2milestone("Using repository alias: '%s'", alias);
y2milestone("Using repository alias: '%1'", alias);
}
else {
// no alias present in URL, add use the product name
if (!haskey(params, "alias")) {
alias = prod["name"]:"";
y2milestone("Using product name '%s' as repository alias", alias);
y2milestone("Using product name '%1' as repository alias", alias);
}
// keep the alias from URL
else {
alias = params["alias"]:"";
y2milestone("Using repository alias from URL: %s", alias);
y2milestone("Using repository alias from URL: %1", alias);
}
}

Expand Down

0 comments on commit 48c235b

Please sign in to comment.