summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbin/efa4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/efa b/bin/efa
index bf28342..8d525ab 100755
--- a/bin/efa
+++ b/bin/efa
@@ -93,10 +93,10 @@ $content = $www->content;
# ambiguous input
foreach (split(/<span class="errorTextBold">Bitte auswählen<\/span>/s, $content)) {
if (/<select name="(?<what>(place|type|name)_(origin|destination))"/) {
- print STDERR "Ambiguous input for $+{what}\n";
+ print "Ambiguous input for $+{what}\n";
}
while (/<option value="\d+(:\d+)*"( selected)?>(?<choice>[^<]+)<\/option>/gs) {
- print STDERR "\t$+{choice}\n";
+ print "\t$+{choice}\n";
}
}