From bd6f5f3aa666596d0433fdde61c8da09c3739462 Mon Sep 17 00:00:00 2001 From: Mike McLean Date: Thu, 15 Jun 2017 11:29:52 -0400 Subject: [PATCH] include plugin.py in py3 lib --- koji/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koji/Makefile b/koji/Makefile index f1ae8d4f..10ac256f 100644 --- a/koji/Makefile +++ b/koji/Makefile @@ -2,7 +2,7 @@ PYTHON=python PACKAGE = $(shell basename `pwd`) ifeq ($(PYTHON), python3) # for python3 we fully support only basic library + CLI - PYFILES = __init__.py util.py + PYFILES = __init__.py util.py plugin.py PYSCRIPTS = SUBDIRS = else