@@ -31,14 +31,14 @@ class Command(BaseCommand):
3131 """ )
3232
3333 def add_arguments (self , parser ):
34- parser .add_argument ('-n' , '--dry-run' , action = 'store_true' , default = False ,
35- help = "Don't send email, just list recipients" )
36- parser .add_argument ('-d' , '--date' , help = "Date of deletion (mentioned in message)" )
37- parser .add_argument ('-m' , '--minimum-interval' , type = int , default = 6 ,
38- help = "Minimum interval between re-sending email messages, default: %(default)s days" )
39- parser .add_argument ('-r' , '--rate' , type = float , default = 1.0 ,
40- help = 'Rate of sending mail, default: %(default)s/s' )
41- parser .add_argument ('user' , nargs = '*' )
34+ parser .add_argument ('-n' , '--dry-run' , action = 'store_true' , default = False ,
35+ help = "Don't send email, just list recipients" )
36+ parser .add_argument ('-d' , '--date' , help = "Date of deletion (mentioned in message)" )
37+ parser .add_argument ('-m' , '--minimum-interval' , type = int , default = 6 ,
38+ help = "Minimum interval between re-sending email messages, default: %(default)s days" )
39+ parser .add_argument ('-r' , '--rate' , type = float , default = 1.0 ,
40+ help = 'Rate of sending mail, default: %(default)s/s' )
41+ parser .add_argument ('user' , nargs = '*' )
4242
4343
4444 def handle (self , * args , ** options ):
0 commit comments