Cannot pull Value from System Client Tag "Hostname"

Hello!

I am trying to get the value of the system tag "Hostname". Although, when I try to do this, it seems to grab more than just the value. I will post a screenshot showing the script console and its output.

Here is the Client tag itself:

image

Let me know if I need any more information!

readBlocking() returns a list of qualified values. Try:

hn = system.tag.readBlocking('[System]Client/Network/Hostname')[0].value
print hn
1 Like

That was it! Thank you for the quick response!

1 Like