From f502a79639c34cfc3a7f9f177482c11fd4fa92d3 Mon Sep 17 00:00:00 2001 From: JagTheFriend Date: Sat, 26 Jun 2021 11:00:03 +0200 Subject: [PATCH] Fixed typo --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c89b846..fa06860 100644 --- a/README.md +++ b/README.md @@ -95,9 +95,9 @@ Error types ```python from imgurpython.helpers.error import ImgurClientError -try +try: ... -except ImgurClientError as e +except ImgurClientError as e: print(e.error_message) print(e.status_code) ```