Changeset 95587 in webkit


Ignore:
Timestamp:
Sep 20, 2011 5:34:41 PM (13 years ago)
Author:
commit-queue@webkit.org
Message:

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

Patch by Tom Zakrajsek <tomz@codeaurora.org> on 2011-09-20
Reviewed by Eric Seidel.

  • QueueStatusServer/init.py:
  • QueueStatusServer/main.py:
Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r95584 r95587  
     12011-09-20  Tom Zakrajsek  <tomz@codeaurora.org>
     2
     3        Need to specify a django version, instead of using default
     4        https://bugs.webkit.org/show_bug.cgi?id=68398
     5
     6        Reviewed by Eric Seidel.
     7
     8        * QueueStatusServer/__init__.py:
     9        * QueueStatusServer/main.py:
     10
    1112011-09-20  Tom Zakrajsek  <tomz@codeaurora.org>
    212
  • trunk/Tools/QueueStatusServer/__init__.py

    r71441 r95587  
    77# the default Google AppEngine install.
    88
     9# Request a modern Django
     10from google.appengine.dist import use_library
     11use_library('django', '1.2')  # Must agree with main.py!
    912
    1013def fix_sys_path():
  • trunk/Tools/QueueStatusServer/main.py

    r94228 r95587  
    2929# Request a modern Django
    3030from google.appengine.dist import use_library
    31 use_library('django', '1.1')
     31use_library('django', '1.2')  # Must agree with __init.py__
    3232
    3333from google.appengine.ext import webapp
Note: See TracChangeset for help on using the changeset viewer.