You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 21, 2024. It is now read-only.
if not self.con:
self.connect()
with self.con:
cur = self.con.cursor()
#q = 'SELECT tag,description FROM TagTree where is_assignable = "yes";'
q = 'SELECT tag FROM TagTree where is_assignable = "yes";'
cur.execute(q)
tags = cur.fetchall()
if config["Log"]["DEBUG"]:
msg = ("tags", str(tags))
logger.debug(msg)
cur.close()
self.con = None
for line in tags:
#tag, description = line
#netbox.post_tag(tag, description)
tag = line
netbox.post_tag(tag)
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
ITJamie, I am using your newer version. I am receiving this error.
" pymysql.err.OperationalError: (1054, "Unknown column 'description' in 'field list'")"
Racktables version: 0.20.14
Netbox Version: 3.3.0
The text was updated successfully, but these errors were encountered: