Clear printing.

Signed-off-by: Arun Prakash Jana <engineerarun@gmail.com>
This commit is contained in:
Arun Prakash Jana 2015-11-06 09:17:25 +05:30
parent e213b60242
commit b70f7d65f1

2
markit
View File

@ -110,7 +110,7 @@ def cleardb(conn, cur):
def printtable(cur):
for row in cur.execute('SELECT * FROM bookmarks'):
print("%s. %s\t%s\t%s" % (row[0], row[1], row[2][1:-1], row[3]))
print("%s. %s\t[%s]\t(%s)" % (row[0], row[1], row[2][1:-1], row[3]))
# Main starts here
# ----------------