dcramer / django-devserver

A drop-in replacement for Django's runserver.
BSD 3-Clause "New" or "Revised" License
1.27k stars 158 forks source link

Remove an excess '%s' from the sql format string. #103

Closed glasslion closed 10 years ago

glasslion commented 10 years ago

There are two %s inside the format string, but on one value.

This bug was introduced in 2010. It was not noticed probably because executemany() can only be triggered by raw sql,

dcramer commented 10 years ago

Thanks!