Merge pull request #21 from loicpirez/master

Fix typo in `parse_list` comment
This commit is contained in:
Rui Carmo 2021-03-02 08:08:11 +00:00 committed by GitHub
commit 01aa99feb8
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)