Skip to content

Commit d197031

Browse files
authored
Fix typos in dissect.regf code block (#64)
1 parent 6ddf946 commit d197031

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/source/projects/dissect.regf/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ subkeys from the root of a hive:
3131
3232
from dissect.regf import RegistryHive
3333
34-
with open("/path/to/SYSTEM", "rb") as fh
34+
with open("/path/to/SYSTEM", "rb") as fh:
3535
hive = RegistryHive(fh)
36-
for subkey in hive.root.subkeys():
36+
for subkey in hive.root().subkeys():
3737
print(subkey)
3838
3939

0 commit comments

Comments
 (0)