From 8ab4bb90dbf9bc46781c850c25d520e188d59f1a Mon Sep 17 00:00:00 2001 From: Tobias Reinhard Date: Fri, 23 Aug 2024 10:01:26 +0200 Subject: [PATCH] Fixes code in README --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 87e68a2..5cf146c 100644 --- a/README.rst +++ b/README.rst @@ -36,7 +36,7 @@ AIS2.py works like this: >>> from AIS import AIS, PDF >>> client = AIS('alice', 'a_secret', 'a.crt', 'a.key') >>> pdf = PDF('source.pdf') - >>> ais.sign_one_pdf(pdf) + >>> client.sign_one_pdf(pdf) >>> with open('target.pdf', 'wb') as fp: ... fp.write(pdf.out_stream.getvalue()) ...