Skip to content

Commit 837fd2e

Browse files
authored
fix typo in error message
1 parent 21317ee commit 837fd2e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

pygeometa/core.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
# referenced with those assets.
2020
#
2121
# Copyright (c) 2016 Government of Canada
22-
# Copyright (c) 2024 Tom Kralidis
22+
# Copyright (c) 2025 Tom Kralidis
2323
#
2424
# Permission is hereby granted, free of charge, to any person
2525
# obtaining a copy of this software and associated documentation
@@ -549,7 +549,8 @@ def import_(ctx, metadata_file, schema, output, verbosity):
549549
else:
550550
output.write(yaml.dump(content, indent=4))
551551
except Exception as err:
552-
raise click.ClickException(f'No supported schema detecte/found: {err}')
552+
raise click.ClickException(
553+
f'No supported schema detected/found: {err}')
553554

554555

555556
@click.command()

0 commit comments

Comments
 (0)