11308: Merge branch 'master' into 11308-python3
[arvados.git] / crunch_scripts / crunchutil / subst.py
index fad9b060ee65ea574d6c8a3a1f04e528559a6277..bd99d3c71cafc76392be14ec0b0b38973a7c11fc 100644 (file)
@@ -63,7 +63,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]