Remove old comment for python2

This commit is contained in:
Taylor Helsper 2022-04-20 23:11:04 -05:00
parent 75316c55ef
commit 4e7c4fc4a9

View File

@ -948,7 +948,6 @@ def get_docker_running_containers():
if get_service_status_code("docker") != 0:
return containers
# TODO: switch to subprocess after switch to python3 for web ui (timeout doesn't work w/ subprocess32, causes issues)
try:
text = subprocess.check_output("docker ps --format '{{.Names}}'", shell=True, timeout=3).decode("utf8")
containers = text.splitlines()