Skip to content

Commit 784087a

Browse files
author
hfitzp200_comcast
committed
Optionality for Docker
1 parent e6f9a8c commit 784087a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

framework/core/testControl.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,11 @@
3333
import time
3434
import signal
3535
import random
36-
import telnetlib
36+
try:
37+
import telnetlib
38+
except ImportError:
39+
# telnetlib was removed in Python 3.13, this is handled in telnetClass.py
40+
telnetlib = None
3741
import os
3842
import shlex, subprocess
3943
import traceback

0 commit comments

Comments
 (0)