From 2c2470223b6a2ba7eada21e15870b95362d1b860 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20PIREZ?= Date: Tue, 2 Mar 2021 15:53:56 +0800 Subject: [PATCH] Fix typo in `parse_list` comment --- imapbackup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imapbackup.py b/imapbackup.py index c61468b..f268c79 100644 --- a/imapbackup.py +++ b/imapbackup.py @@ -357,7 +357,7 @@ def parse_string_list(row): def parse_list(row): - """Prases response of LIST command into a list""" + """Parses response of LIST command into a list""" row = row.strip() paren_list, row = parse_paren_list(row) string_list = parse_string_list(row)