From c13bcecbc72c224e87de1e9bf40529d556184b99 Mon Sep 17 00:00:00 2001 From: Tomas Kopecek Date: Jul 01 2020 12:01:01 +0000 Subject: fix error message --- diff --git a/hub/kojihub.py b/hub/kojihub.py index c0ffdd5..d756a78 100644 --- a/hub/kojihub.py +++ b/hub/kojihub.py @@ -5635,7 +5635,7 @@ def ensure_volume_symlink(binfo): return os.unlink(basedir) elif os.path.exists(basedir): - raise koji.GenericError('Unexpected build content: %s', basedir) + raise koji.GenericError('Unexpected build content: %s' % basedir) else: # parent dir might not exist koji.ensuredir(os.path.dirname(basedir))