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')