From af952ba476fb9374f11874a60c40baa0b1fff534 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Luttringer?= Date: Mon, 25 Jun 2012 13:47:32 +0200 Subject: [PATCH] clean syntax in load_repositories --- bin/is | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/is b/bin/is index 3bf55a4..cc09cdc 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) -- GitLab