We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ab0f67c + b607b8e commit 59efdd9Copy full SHA for 59efdd9
1 file changed
concoredocker.java
@@ -62,7 +62,7 @@ public static void main(String[] args) {
62
} else if (!sparams.isEmpty()) {
63
// Fallback: convert key=value,key=value format to dict
64
System.out.println("converting sparams: " + sparams);
65
- sparams = "{'" + sparams.replaceAll(",", ",'").replaceAll("=", "':").replaceAll(" ", "") + "}";
+ sparams = "{'" + sparams.replaceAll(";", ",'").replaceAll("=", "':").replaceAll(" ", "") + "}";
66
System.out.println("converted sparams: " + sparams);
67
try {
68
Object parsed = literalEval(sparams);
0 commit comments