Skip to content

Commit

Permalink
Remove commented out code
Browse files Browse the repository at this point in the history
  • Loading branch information
Furr committed Sep 25, 2018
1 parent edd9ae7 commit bfb0cd6
Showing 1 changed file with 1 addition and 15 deletions.
16 changes: 1 addition & 15 deletions mongolog/management/commands/analog.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,7 @@


class Command(BaseCommand):
"""
if django.VERSION[1] <= 7:
from optparse import make_option
option_list = BaseCommand.option_list + (
make_option(
'-l', '--limit', default=10, type=int, action='store', dest='limit',
help='Delete poll instead of closing it'),
make_option(
'-t', '--tail', default=False, action='store_true', dest='tail',
help='Tail the log file. By default it will limit to 10 results. Use --limit to change'),
make_option(
'-q', '--query', default=None, action='store', dest='query',
help='Pass in a search query to mongo.'),
)
"""

def __init__(self, *args, **kwargs):
super(Command, self).__init__(*args, **kwargs)
self.prev_object_id = None
Expand Down

0 comments on commit bfb0cd6

Please sign in to comment.