diff options
author | Sol Jerome <sol.jerome@gmail.com> | 2013-07-27 18:23:42 -0500 |
---|---|---|
committer | Sol Jerome <sol.jerome@gmail.com> | 2013-07-27 18:23:42 -0500 |
commit | 762baa81c1be1829ddc341410d36685aca46d095 (patch) | |
tree | 598cd3a4ea4fbfa19fe67fa557826012573d75ff /src/sbin | |
parent | 3435963a7c715bd3e6e912c6224fc8b893b1abe4 (diff) | |
download | bcfg2-762baa81c1be1829ddc341410d36685aca46d095.tar.gz bcfg2-762baa81c1be1829ddc341410d36685aca46d095.tar.bz2 bcfg2-762baa81c1be1829ddc341410d36685aca46d095.zip |
bcfg2-yum-helper: Fix python3 syntax error
Signed-off-by: Sol Jerome <sol.jerome@gmail.com>
Diffstat (limited to 'src/sbin')
-rwxr-xr-x | src/sbin/bcfg2-yum-helper | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sbin/bcfg2-yum-helper b/src/sbin/bcfg2-yum-helper index 161aa3e50..643d0ccd9 100755 --- a/src/sbin/bcfg2-yum-helper +++ b/src/sbin/bcfg2-yum-helper @@ -304,7 +304,7 @@ def main(): try: # this code copied from yumcommands.py cachemgr.populate_cache() - print json.dumps(True) + print(json.dumps(True)) except yum.Errors.YumBaseError: logger.error("Unexpected error creating cache: %s" % sys.exc_info()[1], exc_info=1) |