Fixed a bug concerning aliases

dev
peery 3 years ago
parent 7a276a5492
commit 5a2d4b9b73

@ -581,6 +581,7 @@ class DBAdapter:
"""
name = name.strip().lower()
implications = [self.get_tag_ID(x) for x in implications]
aliases = [self.get_tag_ID(x) for x in aliases]
d = {
"id": tag_id,
"name": name,

@ -5,6 +5,10 @@ from ArtNet.artnet_manager import ArtNetManager
# TODO 2. edit a tag on the current image & save the edit
# TODO 3. attempt to save the current image
# TODO fix bugs:
# TODO 1. import tags on #237 failed to catch all tags
# TODO 2. pressing prev. Unknown from ~#238 returns wrong unknowns! (always #136, #132, #127, then correct)
if __name__ == "__main__":
am = ArtNetManager()
am.run()

Loading…
Cancel
Save