Skip to content

Commit

Permalink
management command fix
Browse files Browse the repository at this point in the history
  • Loading branch information
somewes committed Sep 18, 2017
1 parent 6394ea9 commit c3d436e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
1 change: 1 addition & 0 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
Josh Marlow @joshmarlow [email protected] (primary)
Wes Okes @wesokes [email protected] (primary)
Wes Kendall @wesleykendall [email protected] (secondary)
Cardinal-DeepSea-Blues (https://github.com/Cardinal-DeepSea-Blues)
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,14 @@


class Command(BaseCommand):
option_list = BaseCommand.option_list + (
make_option(
def add_arguments(self, parser):
parser.add_argument(
'--verbose', action='store_true', dest='verbose', default=False,
help='Determines if we should display which apps are being updated'
),
make_option(
)
parser.add_argument(
'--app', dest='app', default=None, help='Updates a single app'
)
)

help = 'Call the InitialData.update_initial_data command for all apps. Use --app to update only one app.'

Expand Down

0 comments on commit c3d436e

Please sign in to comment.