From 325fbe44382a3b8ee13d29c3a8ef81660d3a1a6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20=27Necoro=27=20Neumann?= Date: Tue, 16 Aug 2016 00:07:15 +0200 Subject: Fix --- archivist/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() -- cgit v1.2.3