diff --git a/bin/is b/bin/is index 3bf55a4788bee6d670438f35144d4e24dc7418d9..cc09cdc16a8dcf64d1092c461d6956421be7c88e 100755 --- a/bin/is +++ b/bin/is @@ -61,9 +61,9 @@ def load_repositories(args): # register repositories (order matter) # load repo configs from command line if args.repo_path != "": - repoman.register(RepositoryConfig(istools.smd5sum(args.repo_path)[:8], - path=args.repo_path), temp=True, - nosync=args.no_sync) + repoconf = RepositoryConfig(istools.smd5sum(args.repo_path)[:8], + path=args.repo_path) + repoman.register(repoconf, temp=True, nosync=args.no_sync) # load repo configs from config for repoconf in RepoConfigFile(args.repo_config).repos: repoman.register(repoconf, nosync=args.no_sync)