Skip to content

Commit

Permalink
Merge pull request #79 from open-contracting/bug-fix-verbose
Browse files Browse the repository at this point in the history
Bug fix: have moved from verbose to quiet
  • Loading branch information
odscjames committed Feb 12, 2019
2 parents 6fdb99f + 755f7f4 commit 0f3b411
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ocdskingfisherprocess/cli/commands/upgrade_database.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ def configure_subparser(self, subparser):
def run_command(self, args):

if args.deletefirst:
if args.verbose:
if not args.quiet:
print("Dropping Database")
self.database.delete_tables()

if args.verbose:
if not args.quiet:
print("Upgrading/Creating Database")
self.database.create_tables()

0 comments on commit 0f3b411

Please sign in to comment.