From 1fa6cb72c3cd690e798248571f2d8e84b7082464 Mon Sep 17 00:00:00 2001 From: Camilo Cota Date: Wed, 17 Jul 2024 17:06:20 +0200 Subject: [PATCH] Fix typo in simple/login.py example Signed-off-by: Camilo Cota --- examples/simple/login.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/simple/login.py b/examples/simple/login.py index 4af2eeb8..7d0043e2 100644 --- a/examples/simple/login.py +++ b/examples/simple/login.py @@ -82,7 +82,7 @@ def main(args): 5. We first try using the docker-py login. 6. If it fails we fall back to custom setting of credentials. """ - client = oras.client.OrasClient(insecre=args.insecure) + client = oras.client.OrasClient(insecure=args.insecure) print(client.version()) # Other ways to handle login: