|
@@ -117,7 +117,7 @@ def select(args: Namespace):
|
|
|
import sqlite3
|
|
import sqlite3
|
|
|
with sqlite3.connect(args.output) as db:
|
|
with sqlite3.connect(args.output) as db:
|
|
|
for it in db.execute(STMT_SELECT):
|
|
for it in db.execute(STMT_SELECT):
|
|
|
- print('|'.join(it))
|
|
|
|
|
|
|
+ print('|'.join([str(i) for i in it]))
|
|
|
|
|
|
|
|
def render(args: Namespace):
|
|
def render(args: Namespace):
|
|
|
print(args)
|
|
print(args)
|