export pcode&hex from command line fixed

This commit is contained in:
honfika
2014-08-08 22:06:17 +02:00
parent 5513956f04
commit 97631dc718

View File

@@ -1259,7 +1259,7 @@ public class CommandLineArgumentParser {
return vals[0];
}
for (E e : vals) {
if (e.toString().toLowerCase().equals(str.toLowerCase())) {
if (e.toString().toLowerCase().replace("_", "").equals(str.toLowerCase().replace("_", ""))) {
return e;
}
}