Update _parsers._sanitise_list() documentation.

testing/mmn/mktime_takes_localtime_not_gmtime
Isis Lovecruft 2013-06-28 02:30:20 +00:00
parent 4fcfef1bde
commit f996bf9e31
No known key found for this signature in database
GPG Key ID: A3ADB67A2CDB8B35
1 changed files with 3 additions and 3 deletions

View File

@ -430,9 +430,9 @@ def _sanitise_list(arg_list):
:param list arg_list: A list of options and flags for GnuPG.
:rtype: generator
:return: A generator whose next() method returns each of the items in
``arg_list`` after calling ``_sanitise()`` with that item as a
parameter.
:returns: A generator whose next() method returns each of the items in
``arg_list`` after calling ``_sanitise()`` with that item as a
parameter.
"""
if isinstance(arg_list, list):
for arg in arg_list: