Skip to content

Commit 3126eeb

Browse files
committed
Fix the \d command syntax error.
1 parent e58bbcd commit 3126eeb

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

litecli/packages/special/dbcommands.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -215,10 +215,9 @@ def load_extension(cur, arg, **_):
215215
)
216216
def describe(cur, arg, **_):
217217
if arg:
218-
args = (arg,)
219218
query = """
220219
PRAGMA table_info({})
221-
""".format(args)
220+
""".format(arg)
222221
else:
223222
return list_tables(cur)
224223

0 commit comments

Comments
 (0)