diff options
-rwxr-xr-x | create-srpm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/create-srpm b/create-srpm index 820c81f..3dab068 100755 --- a/create-srpm +++ b/create-srpm @@ -1,6 +1,6 @@ #!/usr/bin/python -from RepSys import Error, config +from RepSys import Error, config, plugins from RepSys.rpmutil import get_srpm from RepSys.cgiutil import get_targets from RepSys.util import mapurl, execcmd, get_helper @@ -96,6 +96,7 @@ def parse_options(): def main(): + plugins.load() iface = CmdIface() opts, args = parse_options() try: |