Skip to content

Commit 811ea06

Browse files
committed
fix ansible-runner references
1 parent af95d7f commit 811ea06

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/ansibleguy-webui/aw/utils/version.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ def parsed_ansible_version(python_modules) -> dict:
4141
versions['libyaml'] = ansible_version[-1].split('=')[1].strip()
4242

4343
if 'ansible-runner' in python_modules:
44-
versions['ansible_runner'] = python_modules['ansible-runner']['version']
44+
# versions['ansible_runner'] = python_modules['ansible-runner']['version']
45+
versions['ansible_runner'] = python_modules['ansibleguy-runner']['version']
4546

4647
if 'ansible' in python_modules:
4748
versions['ansible'] = python_modules['ansible']['version']

src/ansibleguy-webui/aw/views/system.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from django.shortcuts import HttpResponse
77
from django.shortcuts import render
88
from django.contrib.auth.decorators import login_required
9-
from ansible_runner.interface import get_ansible_config
9+
from ansibleguy_runner.interface import get_ansible_config
1010

1111
from aw.utils.http import ui_endpoint_wrapper
1212
from aw.utils.subps import process_cache

0 commit comments

Comments
 (0)