login error: hostname doesn't match .... but it does!!!

2015-03-31 Thread bwv549
Just trying to login a new user, but I'm getting this error, which makes no sense to me because it looks like it should match: Login error (https://www.jtprince.dev.doba.com/new-login.html) -- Exception: hostname 'www.jtprince.dev.doba.com' doesn't match either of '*.doba.com', 'doba.com' -- Re

how to use proper subcommands in Django 1.8?

2015-10-27 Thread bwv549
I realize that there is a LabelCommand, and that works for some things, but I would like full subcommand capabilities (in this case because I would like to have specific options for specific subcommands). I can invoke add_subparsers inside of add_arguments, but when it gets to where you take th

Re: how to use proper subcommands in Django 1.8?

2015-10-27 Thread bwv549
I can get basic functionality through specifying the parser_class kwarg in my add_subparsers. I've tried this both with ArgumentParser and with my own custom subclass of CommandParser that takes either CommandParser initialize methods or ArgumentParser style initialize methods. However, I hav

How to create a global management command?

2015-10-27 Thread bwv549
I have some commands I'd like to include in the manage command (i.e., like 'coverage'). How to make a global command? (I've written many commands for apps, but wonder how to make one that isn't tied to any app). -- You received this message because you are subscribed to the Google Groups "Dj