Python MySQLdb TypeError: not all arguments converted during string formatting
Upon running this script: #! /usr/bin/env python import MySQLdb as mdb import sys class Test: def check(self, search): try: con = mdb.connect('localhost', 'root', 'pas...
stackoverflow.com