Author: claudep
Date: 2012-03-28 13:28:13 -0700 (Wed, 28 Mar 2012)
New Revision: 17813

Modified:
   django/trunk/docs/howto/deployment/wsgi/uwsgi.txt
Log:
Fixed 17993 -- Removed quotes around module parameter for wider compatibility. 
Thanks [email protected] for the report.

Modified: django/trunk/docs/howto/deployment/wsgi/uwsgi.txt
===================================================================
--- django/trunk/docs/howto/deployment/wsgi/uwsgi.txt   2012-03-27 09:07:03 UTC 
(rev 17812)
+++ django/trunk/docs/howto/deployment/wsgi/uwsgi.txt   2012-03-28 20:28:13 UTC 
(rev 17813)
@@ -47,7 +47,7 @@
 Here's an example command to start a uWSGI server::
 
     uwsgi --chdir=/path/to/your/project
-        --module='mysite.wsgi:application' \
+        --module=mysite.wsgi:application \
         --env DJANGO_SETTINGS_MODULE=mysite.settings \
         --master --pidfile=/tmp/project-master.pid \
         --socket=127.0.0.1:49152 \      # can also be a file
@@ -81,7 +81,7 @@
 
     [uwsgi]
     chdir=/path/to/your/project
-    module='mysite.wsgi:application'
+    module=mysite.wsgi:application
     master=True
     pidfile=/tmp/project-master.pid
     vacuum=True

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.

Reply via email to