summaryrefslogtreecommitdiff
path: root/django/core/management/__init__.py
AgeCommit message (Expand)Author
2013-10-18[1.6.x] Fixed #21284 -- Prevented KeyError swallowing in fetch_commandClaude Paroz
2013-06-19Removed several unused imports.Aymeric Augustin
2013-05-17Replaced an antiquated pattern.Aymeric Augustin
2013-02-04Revert "Fixed #19724 -- Output error when settings are improperly configured"Claude Paroz
2013-02-04Fixed #19724 -- Output error when settings are improperly configuredClaude Paroz
2012-12-29Removed django.core.management.setup_environ and execute_manager.Aymeric Augustin
2012-12-08Fixed #19357 -- Allow non-ASCII chars in filesystem pathsClaude Paroz
2012-11-07Fixed #19257 -- Don't swallow command's KeyError in call_commandClaude Paroz
2012-09-26Fixed #18845 -- Do not swallow AttributeErrors when running commandsClaude Paroz
2012-09-08Fixed #18545 -- Make the 'no DJANGO_SETTINGS_MODULE' error message more usefu...Carl Meyer
2012-08-15Fixed the erorr handling code for missing management commands.Alex Gaynor
2012-08-15Make sure to explicitly close opened files.Alex Gaynor
2012-08-08remove a bunch of unnescesarry iterkeys() callsAlex Gaynor
2012-08-07[py3] Fixed access to dict keys/values/items.Aymeric Augustin
2012-07-22[py3] Fixed remaining Python 3 syntax errors.Aymeric Augustin
2012-05-03Fixed #18042 -- Advanced deprecation warnings.Aymeric Augustin
2012-04-30Replaced print statement by print function (forward compatibility syntax).Claude Paroz
2012-04-29Fixed #18013 -- Use the new 'as' syntax for exceptions.Claude Paroz
2012-03-31Removed the deprecated reset and sqlreset management commands.Aymeric Augustin
2012-02-09Fixed #10080 -- Slightly extended the fix made in r10401 by also taking comma...Jannis Leidel
2012-02-07Fixed #11745 -- Grouped commands by application in the output of `manage.py h...Aymeric Augustin
2012-01-08Implemented PEP386-compatible version numbers. Thanks Jannis for the guidance.Aymeric Augustin
2011-12-22Fixed #17042 -- Extended startproject and startapp management commands to bet...Jannis Leidel
2011-12-17Fixed various dodgy behavioursAdrian Holovaty
2011-10-13Fixed #15372 -- Switched to a startproject default layout that allows us to a...Carl Meyer
2011-09-10Kill some more dead code.Alex Gaynor
2011-09-09Replaced `has_key()` calls with `in` to ease Python 3 port. Thanks, Martin vo...Jannis Leidel
2011-05-13Fixed #15064 -- Made manage.py honor the existence and value of DJANGO_SETTIN...Ramiro Morales
2011-03-26Fixed #9158 -- Changed django-admin.py help to be printed to stdout instead o...Adrian Holovaty
2011-02-21Fixed #15359 -- Ensure that the -h option is always honored by django-admin.p...Russell Keith-Magee
2010-08-05Fixed #13610 -- Improved error reporting when the ENGINE setting is ommitted ...Russell Keith-Magee
2010-01-10Fixed #11842 -- django-admin.py now displays usage information if invoked wit...Adrian Holovaty
2010-01-10Changed a whole bunch of places to raise exception instances instead of old-s...Adrian Holovaty
2009-11-19Fixed #11243 -- Ensured that bash_completion output is emitted in sorted orde...Russell Keith-Magee
2009-09-11Fixed #10752. Added more advanced bash completion. Thanks, Arthur Koziel.Joseph Kocherhans
2009-05-12Fixed #9751: admin scripts now calculate the project directory correctly when...Jacob Kaplan-Moss
2009-04-05Fixed #10080: `call_command` now takes option defaults into account, sparing ...Jacob Kaplan-Moss
2009-04-01Fixed #9005: don't wig out when reversing a URL if SETTINGS_MODULE isn't set....Jacob Kaplan-Moss
2009-03-18Fixed #8193: all dynamic imports in Django are now done correctly. I know thi...Jacob Kaplan-Moss
2009-02-16Merge branch 'master' into upstream-trunkJacob Kaplan-Moss
2009-01-19Fixed #9789 -- Handle jython's compiled settings filename correctly.Malcolm Tredinnick
2008-11-16Fixed #9455 -- Tiny cleanup to avoid an "undefined variable" warning. The netMalcolm Tredinnick
2008-08-31Fixed #8703 -- Allow deeply nested import paths for DJANGO_SETTINGS_MODULE whenMalcolm Tredinnick
2008-08-17Fixed #8239 -- Google App Engine has a restricted "imp" module, which doesn'tMalcolm Tredinnick
2008-08-12Fixed #8246 -- Corrected the handling of settings files. Thanks to AdamG and ...Russell Keith-Magee
2008-08-10Fixed #5943 -- Modified django-admin to behave like manage.py if settings are...Russell Keith-Magee
2008-08-08Fixed #8120, #7997 -- Cleaned up the help messages displayed by django-admin ...Russell Keith-Magee
2008-08-08Fixed #5825 -- Modified the custom command loader to allow for explicit speci...Russell Keith-Magee
2008-07-11Fixed #6017 -- Modified the Lax parser to allow --settings and the other core...Russell Keith-Magee
2008-03-19Fixed a corner case in management.setup_environ (it was triggered under Cygwi...Jacob Kaplan-Moss