From c0bf91f48e31dde458950acf7735098613ced32e Mon Sep 17 00:00:00 2001 From: cksharma Date: Sun, 8 May 2016 01:53:49 -0400 Subject: [PATCH] Gcloud python helloworld app --- managed_vms/hello_world/main.py | 2 +- managed_vms/hello_world_django/helloworld/views.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/managed_vms/hello_world/main.py b/managed_vms/hello_world/main.py index 7115570b568..ae4b7924cdf 100644 --- a/managed_vms/hello_world/main.py +++ b/managed_vms/hello_world/main.py @@ -22,7 +22,7 @@ @app.route('/') def hello(): """Return a friendly HTTP greeting.""" - return 'Hello World!' + return 'Welcome to GCloud!' if __name__ == '__main__': diff --git a/managed_vms/hello_world_django/helloworld/views.py b/managed_vms/hello_world_django/helloworld/views.py index e6b9069a796..067ee2f2aaa 100644 --- a/managed_vms/hello_world_django/helloworld/views.py +++ b/managed_vms/hello_world_django/helloworld/views.py @@ -19,4 +19,4 @@ def index(request): return HttpResponse( - 'Hello, World. This is Django running on Google App Engine') + 'Hello, World CKS. This is Django running on Google App Engine')