Title: [95587] trunk/Tools
Revision
95587
Author
[email protected]
Date
2011-09-20 17:34:41 -0700 (Tue, 20 Sep 2011)

Log Message

Need to specify a django version, instead of using default
https://bugs.webkit.org/show_bug.cgi?id=68398

Patch by Tom Zakrajsek <[email protected]> on 2011-09-20
Reviewed by Eric Seidel.

* QueueStatusServer/__init__.py:
* QueueStatusServer/main.py:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (95586 => 95587)


--- trunk/Tools/ChangeLog	2011-09-21 00:16:52 UTC (rev 95586)
+++ trunk/Tools/ChangeLog	2011-09-21 00:34:41 UTC (rev 95587)
@@ -1,5 +1,15 @@
 2011-09-20  Tom Zakrajsek  <[email protected]>
 
+        Need to specify a django version, instead of using default
+        https://bugs.webkit.org/show_bug.cgi?id=68398
+
+        Reviewed by Eric Seidel.
+
+        * QueueStatusServer/__init__.py:
+        * QueueStatusServer/main.py:
+
+2011-09-20  Tom Zakrajsek  <[email protected]>
+
         Update committers.py with a few more contributor contacts
         https://bugs.webkit.org/show_bug.cgi?id=68487
 

Modified: trunk/Tools/QueueStatusServer/__init__.py (95586 => 95587)


--- trunk/Tools/QueueStatusServer/__init__.py	2011-09-21 00:16:52 UTC (rev 95586)
+++ trunk/Tools/QueueStatusServer/__init__.py	2011-09-21 00:34:41 UTC (rev 95587)
@@ -6,6 +6,9 @@
 # Make sure that this module will load in that case by including paths to
 # the default Google AppEngine install.
 
+# Request a modern Django
+from google.appengine.dist import use_library
+use_library('django', '1.2')  # Must agree with main.py!
 
 def fix_sys_path():
     import sys

Modified: trunk/Tools/QueueStatusServer/main.py (95586 => 95587)


--- trunk/Tools/QueueStatusServer/main.py	2011-09-21 00:16:52 UTC (rev 95586)
+++ trunk/Tools/QueueStatusServer/main.py	2011-09-21 00:34:41 UTC (rev 95587)
@@ -28,7 +28,7 @@
 
 # Request a modern Django
 from google.appengine.dist import use_library
-use_library('django', '1.1')
+use_library('django', '1.2')  # Must agree with __init.py__
 
 from google.appengine.ext import webapp
 from google.appengine.ext.webapp.util import run_wsgi_app
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to