diff --git a/samples/http-image-cloudevents/client.py b/samples/http-image-cloudevents/client.py index a61303f1..db318782 100644 --- a/samples/http-image-cloudevents/client.py +++ b/samples/http-image-cloudevents/client.py @@ -64,7 +64,7 @@ def send_structured_cloud_event(url: str): if __name__ == "__main__": # Run client.py via: 'python3 client.py http://localhost:3000/' if len(sys.argv) < 2: - sys.exit("Usage: python with_requests.py ") + sys.exit("Usage: python client.py ") url = sys.argv[1] send_binary_cloud_event(url) diff --git a/samples/http-json-cloudevents/client.py b/samples/http-json-cloudevents/client.py index f68f27b3..8073f899 100644 --- a/samples/http-json-cloudevents/client.py +++ b/samples/http-json-cloudevents/client.py @@ -55,7 +55,7 @@ def send_structured_cloud_event(url): # expects a url from command line. # e.g. python3 client.py http://localhost:3000/ if len(sys.argv) < 2: - sys.exit("Usage: python with_requests.py ") + sys.exit("Usage: python client.py ") url = sys.argv[1] send_binary_cloud_event(url)