simple problem (i think).
I have following query:
hostname = Host.objects.get(pk=(host_id))
env = Host.objects.filter(cfthostname=hostname).values('cftos')
print(env)
what i get from print is:
<QuerySet [{'cftos': 'unix'}]>
how to make it:
unix