fixes merge conflict

This commit is contained in:
Andreas Rumpf
2018-08-19 15:14:03 +02:00
committed by ringabout
parent f503ef5fd9
commit ebdbdb0ca5

View File

@@ -105,7 +105,6 @@ proc dbError*(db: DbConn) {.noreturn.} =
proc dbQuote*(s: string): string =
## DB quotes the string.
if s.isNil: return "NULL"
result = "'"
for c in items(s):
if c == '\'': add(result, "''")