aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--sec_certs/sample/cpe.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sec_certs/sample/cpe.py b/sec_certs/sample/cpe.py
index 4a026ce1..f66b8f11 100644
--- a/sec_certs/sample/cpe.py
+++ b/sec_certs/sample/cpe.py
@@ -82,7 +82,7 @@ class CPE(PandasSerializableType, ComplexSerializableType):
def target_hw(self) -> str:
if self.uri is None:
raise RuntimeError("URI is missing.")
- return " ".join(self.uri.split(":")[11].split("_"))
+ return " ".join(self.uri.split(":")[10].split("_"))
@property
def pandas_tuple(self) -> Tuple: