Skip to content

Commit

Permalink
Workaround for new GAE version compatibility with appengine-monkey.
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris McDonough committed Dec 30, 2009
1 parent 6637c51 commit 8ab4d08
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions docs/tutorials/gae/index.rst
Expand Up @@ -109,6 +109,15 @@ system.
# assert sys.path[:len(cur_sys_path)] == cur_sys_path, (
# "addsitedir() caused entries to be prepended to sys.path")
For GAE development environment 1.3.0 or better, you will also need
the following somewhere near the top of the ``runner.py`` file to
fix a compatibility issue with ``appengine-monkey``:

.. code-block:: python
import os
os.mkdir = None
#. Run the application. ``dev_appserver.py`` is typically installed
by the SDK in the global path but you need to be sure to run it
with Python 2.5 (or whatever version of Python your GAE SDK
Expand Down

0 comments on commit 8ab4d08

Please sign in to comment.