Do not double quote

This commit is contained in:
Nico Schottelius 2016-09-16 18:13:37 +02:00
parent 83c15168ba
commit 850e5d2e6c
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ class testHTTPServer_RequestHandler(BaseHTTPRequestHandler):
try:
conn = psycopg2.connect("dbname=hackzurich")
cursor = conn.cursor()
cursor.execute("insert into data_test4 (packet) values ('%s')", (data, ))
cursor.execute("insert into data_test4 (packet) values (%s)", (data, ))
conn.close()
except Exception as e:
print("DB Insert failed: %s" % e)