Changed doxygen parameter

The parameter regtype does not exists, it is reqtype.
This commit is contained in:
Rodolfo García Peñas (kix) 2020-10-10 17:48:30 +02:00
parent bb05904cf1
commit 0c04611ca4

View File

@ -32,7 +32,7 @@ class Repository:
def __new__(cls, account, reqtype): def __new__(cls, account, reqtype):
""" """
:param account: :class:`Account` :param account: :class:`Account`
:param regtype: 'remote', 'local', or 'status'""" :param reqtype: 'remote', 'local', or 'status'"""
if reqtype == 'remote': if reqtype == 'remote':
name = account.getconf('remoterepository') name = account.getconf('remoterepository')
@ -81,6 +81,6 @@ class Repository:
executed instead of this stub executed instead of this stub
:param account: :class:`Account` :param account: :class:`Account`
:param regtype: 'remote', 'local', or 'status' :param reqtype: 'remote', 'local', or 'status'
""" """
pass pass