From 0c04611ca4e5dc7f830b8abf7562cd2a45db2daa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodolfo=20Garc=C3=ADa=20Pe=C3=B1as=20=28kix=29?= Date: Sat, 10 Oct 2020 17:48:30 +0200 Subject: [PATCH] Changed doxygen parameter The parameter regtype does not exists, it is reqtype. --- offlineimap/repository/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/offlineimap/repository/__init__.py b/offlineimap/repository/__init__.py index ad2edf2..171f6aa 100644 --- a/offlineimap/repository/__init__.py +++ b/offlineimap/repository/__init__.py @@ -32,7 +32,7 @@ class Repository: def __new__(cls, account, reqtype): """ :param account: :class:`Account` - :param regtype: 'remote', 'local', or 'status'""" + :param reqtype: 'remote', 'local', or 'status'""" if reqtype == 'remote': name = account.getconf('remoterepository') @@ -81,6 +81,6 @@ class Repository: executed instead of this stub :param account: :class:`Account` - :param regtype: 'remote', 'local', or 'status' + :param reqtype: 'remote', 'local', or 'status' """ pass