aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--generalresearch/models/network/rdns/command.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/generalresearch/models/network/rdns/command.py b/generalresearch/models/network/rdns/command.py
index aa48f2a..e88a84d 100644
--- a/generalresearch/models/network/rdns/command.py
+++ b/generalresearch/models/network/rdns/command.py
@@ -31,5 +31,5 @@ def get_dig_version() -> str:
check=False,
)
# e.g. DiG 9.18.39-0ubuntu0.22.04.2-Ubuntu
- ver_str = proc.stderr.strip()
+ ver_str = proc.stderr.strip() + proc.stdout.strip()
return ver_str.split("-", 1)[0].split(" ", 1)[1]