Commit 8479efeb authored by Antoine Millet's avatar Antoine Millet
Browse files

[bug#3937] Tags are now casted as string while export process.

parent 3e69c19f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -111,7 +111,7 @@ class TqlObject(dict):
            if not key.startswith('_'):
                if (key not in deny and (tags is None or key in tags)
                    and value is not None):
                    exported[key] = value
                    exported[key] = str(value)

        return exported