X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/c4fa80c6ed2445e1e384455944eb6c4108906cad..6e73eff3926a2e7345333edd02531e8e6fbe15ef:/crunch_scripts/crunchutil/subst.py?ds=sidebyside diff --git a/crunch_scripts/crunchutil/subst.py b/crunch_scripts/crunchutil/subst.py index fad9b060ee..53def97f96 100644 --- a/crunch_scripts/crunchutil/subst.py +++ b/crunch_scripts/crunchutil/subst.py @@ -1,3 +1,7 @@ +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: Apache-2.0 + import glob import os import re @@ -63,7 +67,7 @@ def sub_basename(v): def sub_glob(v): l = glob.glob(v) if len(l) == 0: - raise SubstitutionError("$(glob {}) no match fonud".format(v)) + raise SubstitutionError("$(glob {}) no match found".format(v)) else: return l[0]