mirror of
https://github.com/certbot/certbot.git
synced 2026-06-06 23:32:06 -04:00
Document raises reverter error in rollback func
This commit is contained in:
parent
3d26cfca90
commit
f9d968071e
1 changed files with 4 additions and 0 deletions
|
|
@ -44,6 +44,10 @@ class Reverter(object):
|
|||
:param int rollback: Number of checkpoints to reverse. A str num will be
|
||||
cast to an integer. So '2' is also acceptable.
|
||||
|
||||
:raises :class:`letsencrypt.client.errors.LetsEncryptReverterError`: If
|
||||
there is a problem with the input or if the function is unable to
|
||||
correctly revert the configuration checkpoints.
|
||||
|
||||
"""
|
||||
try:
|
||||
rollback = int(rollback)
|
||||
|
|
|
|||
Loading…
Reference in a new issue