Skip to content

Commit

Permalink
Arch: Fixed encoding bug in ifc exporter
Browse files Browse the repository at this point in the history
  • Loading branch information
yorikvanhavre committed Apr 23, 2018
1 parent 786054f commit 1e2b975
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Mod/Arch/importIFC.py
Expand Up @@ -1099,7 +1099,7 @@ def export(exportList,filename):

# getting generic data
name = str(obj.Label.encode("utf8"))
description = str(obj.Description) if hasattr(obj,"Description") else ""
description = str(obj.Description.encode("utf8")) if hasattr(obj,"Description") else ""

# getting uid
uid = None
Expand Down

0 comments on commit 1e2b975

Please sign in to comment.