From 008d80186e6c7e3e71b6c7f2a182dfc08241d44e Mon Sep 17 00:00:00 2001 From: Lubos Kocman Date: Sun, 7 Jun 2015 18:05:15 +0000 Subject: [PATCH] pungi-koji: fix bad module path to verify_label() --- bin/pungi-koji | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/pungi-koji b/bin/pungi-koji index 5ab74a11..eb69a496 100755 --- a/bin/pungi-koji +++ b/bin/pungi-koji @@ -156,7 +156,7 @@ def main(): if opts.label: try: - productmd.composeinfo.compose.verify_label(opts.label) + productmd.composeinfo.verify_label(opts.label) except ValueError as ex: parser.error(str(ex))