Fix typo in parse_list comment

This commit is contained in:
Loïc PIREZ 2021-03-02 15:53:56 +08:00 committed by GitHub
parent 10d262fb09
commit 2c2470223b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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