Attention is currently required from: dexter.
Patch set 4:Code-Review -1
1 comment:
File pySim/card_key_provider.py:
Patch Set #4, Line 229: cur.execute("SELECT column_name FROM information_schema.columns where table_name = '%s';" % t)
I believe here and in all other cur.execute statements you don't want to use '%". See https://www. […]
yeah. this is actually true in any programming language: Always use the parameter expansion/susbstitution features of the library, never use format strings.
To view, visit change 41508. To unsubscribe, or for help writing mail filters, visit settings.