Update OsMoThread.java

This commit is contained in:
vshcherb 2014-05-29 14:19:20 +02:00
parent d78db9967b
commit 6cfd05058d

View file

@ -407,7 +407,7 @@ public class OsMoThread {
for(int i = 0; i < l.length(); i++) { for(int i = 0; i < l.length(); i++) {
char c = l.charAt(i); char c = l.charAt(i);
if(c == '\n' || c == '=' || c == '\\') { if(c == '\n' || c == '=' || c == '\\') {
res.append('\\') res.append('\\');
} }
res.append(c); res.append(c);
} }