Skip to content

Commit

Permalink
Duh
Browse files Browse the repository at this point in the history
  • Loading branch information
palewire committed Jul 16, 2017
1 parent 950d5ea commit df17260
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class Command(LoadOCDModelsCommand):
Load OCD BallotMeasureContest and related models with data scraped from the CAL-ACCESS website.
"""
help = 'Load OCD BallotMeasureContest and related models with data scraped from the CAL-ACCESS website'
header = 'Loading Ballot Measure Contests'
header_log = 'Loading Ballot Measure Contests'

def add_arguments(self, parser):
"""
Expand All @@ -34,7 +34,7 @@ def handle(self, *args, **options):
Make it happen.
"""
super(Command, self).handle(*args, **options)
self.header(self.header)
self.header(self.header_log)
if options['flush']:
self.flush()
self.load()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class Command(Command):
Load OCD RetentionContest and related models with data scraped from the CAL-ACCESS website.
"""
help = 'Load OCD RetentionContest and related models with data scraped from the CAL-ACCESS website.'
header = 'Loading Retention Contests'
header_log = 'Loading Retention Contests'

def flush(self):
"""
Expand Down

0 comments on commit df17260

Please sign in to comment.