summaryrefslogtreecommitdiff
path: root/python/__init__.py
diff options
context:
space:
mode:
authorJordan Wiens <github@psifertex.com>2025-11-11 00:11:20 -0500
committerAlexander Taylor <alex@vector35.com>2026-01-20 09:44:10 -0500
commite7bbb5129fd032310b2e2f710ce83945c03f5b13 (patch)
tree8206511abdce8f3107d95627e0c5e3f0c9c756d4 /python/__init__.py
parentede18e23133ade890c533703bf68858c5ee84edd (diff)
handle None cases when empty strings are returned from the core and fix associated coreversion usage
Diffstat (limited to 'python/__init__.py')
-rw-r--r--python/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/__init__.py b/python/__init__.py
index 6ae6bf73..8790ac8f 100644
--- a/python/__init__.py
+++ b/python/__init__.py
@@ -164,7 +164,7 @@ class CoreVersionInfo:
self.major = core_version_info.major
self.minor = core_version_info.minor
self.build = core_version_info.build
- if core_version_info._channel is not None:
+ if core_version_info.channel is not None:
self.channel = core_version_info.channel
else:
self.major = major