Closed nrwall closed 5 years ago
In the usage examples to "Find a key and print all string values" i believe there is a syntax error in the list comprehension.
for value in [v for v key.values() \ if v.value_type() == Registry.RegSZ or \ v.value_type() == Registry.RegExpandSZ]:
should be
for value in [v for v in key.values() \ if v.value_type() == Registry.RegSZ or \ v.value_type() == Registry.RegExpandSZ]:
good catch, thanks!
fixed in readme
In the usage examples to "Find a key and print all string values" i believe there is a syntax error in the list comprehension.
for value in [v for v key.values() \ if v.value_type() == Registry.RegSZ or \ v.value_type() == Registry.RegExpandSZ]:
should be
for value in [v for v in key.values() \ if v.value_type() == Registry.RegSZ or \ v.value_type() == Registry.RegExpandSZ]: