summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2016-08-16 00:07:15 +0200
committerRené 'Necoro' Neumann <necoro@necoro.net>2016-08-16 00:07:15 +0200
commit325fbe44382a3b8ee13d29c3a8ef81660d3a1a6d (patch)
treeedb7ec9cee88c5c27606fc4b1ea9e663a5cdea19
parente43243b7d75fc690f633a061c25834656c2b7719 (diff)
downloadarchivist-325fbe44382a3b8ee13d29c3a8ef81660d3a1a6d.tar.gz
archivist-325fbe44382a3b8ee13d29c3a8ef81660d3a1a6d.tar.bz2
archivist-325fbe44382a3b8ee13d29c3a8ef81660d3a1a6d.zip
Fix
-rw-r--r--archivist/cli.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archivist/cli.py b/archivist/cli.py
index 95b19d3..01c0b57 100644
--- a/archivist/cli.py
+++ b/archivist/cli.py
@@ -19,7 +19,7 @@ def init():
@db.command()
@click.confirmation_option(prompt="Are you sure you want to drop the database?")
-def drop(force):
+def drop():
"""Completely drop all tables."""
from .model import drop_all
drop_all()