summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index cf917e0..90ab094 100644
--- a/README.md
+++ b/README.md
@@ -90,7 +90,7 @@ can use it along the lines of similar Python type (e.g. ASN.1
>>> record = Record()
>>> record['id'] = 123
>>> record['room'] = 321
->>> print(record.prettyPrint())
+>>> str(record)
Record:
id=123
room=321
@@ -146,7 +146,7 @@ Python objects:
```python
>>> from pyasn1.codec.native.decoder import decode
>>> record = decode({'id': 123, 'room': 321, 'house': 0}, asn1Spec=Record())
->>> print(record.prettyPrint())
+>>> str(record)
Record:
id=123
room=321