summaryrefslogtreecommitdiffstats
path: root/pdk/hosting
diff options
context:
space:
mode:
authorMike Ritter <>2009-04-29 09:19:32 -0700
committerThe Android Open Source Project <initial-contribution@android.com>2009-04-29 09:19:32 -0700
commitaa2d95234e8350eebf789da2b976f843318dead8 (patch)
tree5b6cef928915f4a53db71209dfd98c6537b16945 /pdk/hosting
parent705a3ee3975877460c124d98eda12ae16dadd1a6 (diff)
downloadandroid_development-aa2d95234e8350eebf789da2b976f843318dead8.tar.gz
android_development-aa2d95234e8350eebf789da2b976f843318dead8.tar.bz2
android_development-aa2d95234e8350eebf789da2b976f843318dead8.zip
AI 147991: make sources appear in online-pdk/guide
BUG=1815368 Automated import of CL 147991
Diffstat (limited to 'pdk/hosting')
-rw-r--r--pdk/hosting/pdk.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pdk/hosting/pdk.py b/pdk/hosting/pdk.py
index 421f19550..a1c7c07d1 100644
--- a/pdk/hosting/pdk.py
+++ b/pdk/hosting/pdk.py
@@ -26,7 +26,7 @@ from google.appengine.ext.webapp.util import run_wsgi_app
class MainPage(webapp.RequestHandler):
def get(self):
- self.redirect('online-pdk/index.html')
+ self.redirect('online-pdk/guide/index.html')
application = webapp.WSGIApplication([('/', MainPage)], debug=True)