mirror of
https://github.com/samsonjs/imapbackup.git
synced 2026-04-26 14:47:42 +00:00
Merge pull request #21 from loicpirez/master
Fix typo in `parse_list` comment
This commit is contained in:
commit
01aa99feb8
1 changed files with 1 additions and 1 deletions
|
|
@ -357,7 +357,7 @@ def parse_string_list(row):
|
||||||
|
|
||||||
|
|
||||||
def parse_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()
|
row = row.strip()
|
||||||
paren_list, row = parse_paren_list(row)
|
paren_list, row = parse_paren_list(row)
|
||||||
string_list = parse_string_list(row)
|
string_list = parse_string_list(row)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue