Skip to content

Commit d1586dc

Browse files
committed
fixing version number
1 parent e8e823e commit d1586dc

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

certsrv.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,9 +96,9 @@ def retrieve_cert(expected_header: str):
9696
9797
:param expected_header: The expected 'Content-Type' header for the
9898
certificate request.
99-
:return The issued certificate.
99+
:return: The issued certificate.
100100
:raise CertificateRetrievalError: If the certificate 'Content-Type'
101-
header doesn't match the expected type.
101+
header doesn't match the expected type.
102102
"""
103103
def wrap(func: Callable):
104104
@functools.wraps(func)
@@ -123,7 +123,6 @@ class Certsrv:
123123
Web Enrollment service, to create and retrieve certificates from
124124
the Active Directory Certificate Servers (ADCS).
125125
126-
Args:
127126
:param server: The FQDN of the Active Directory Certificate Service server.
128127
:param username: The username for authentication
129128
:param password: The password for authentication

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# built documents.
2121
#
2222
# The full version, including alpha/beta/rc tags.
23-
release = imp.load_source("version", os.path.join("version.py")).version
23+
release = imp.load_source("version", os.path.join("../", "version.py")).version
2424

2525
# Add any Sphinx extension module names here, as strings. They can be
2626
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom

0 commit comments

Comments
 (0)