search for: execute_manag

Displaying 2 results from an estimated 2 matches for "execute_manag".

Did you mean: execute_manager
2013 Aug 01
1
Django 1.5 Upgrade
...followed by the setup.py install. My django app is working, and appears to be running 1.5, however anytime I use manage.py (for collectstatic or syncdb or test, for example) I get these messages: /usr/lib/python2.6/site-packages/django/core/management/__init__.py:465: DeprecationWarning: The 'execute_manager' function is deprecated, you likely need to update your 'manage.py'; please see the Django 1.4 release notes (https://docs.djangoproject.com/en/dev/releases/1.4/). DeprecationWarning) /usr/lib/python2.6/site-packages/django/core/management/__init__.py:409: DeprecationWarning: The ...
2010 Feb 17
0
[PATCH] Provides the new node lifecycle events.
...pers import date, feedgenerator, html, number, misc, text diff --git a/server/ovirtserver/manage.py b/server/ovirtserver/manage.py new file mode 100755 index 0000000..5e78ea9 --- /dev/null +++ b/server/ovirtserver/manage.py @@ -0,0 +1,11 @@ +#!/usr/bin/env python +from django.core.management import execute_manager +try: + import settings # Assumed to be in the same directory. +except ImportError: + import sys + sys.stderr.write("Error: Can't find the file 'settings.py' in the directory containing %r. It appears you've customized things.\nYou'll have to run django-admin.py,...