Skip to content

Commit

Permalink
fix minor syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
jay0lee committed Jan 18, 2024
1 parent cfc587d commit 623d4bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gyb.py
Original file line number Diff line number Diff line change
Expand Up @@ -2356,7 +2356,7 @@ def main(argv):
file_path = os.path.join(path, filename)
print("\nReading Vault labels from %s file %s" % (humansize(file_path), file_path))
print("large files may take some time to read...")
elif file_suffix == '.xml':
if file_suffix == '.xml':
for _, elem in etree.iterparse(file_path, events=('end',)):
if elem.tag == 'Document':
labels = ''
Expand Down

0 comments on commit 623d4bc

Please sign in to comment.