Skip to content

Commit

Permalink
Py2: fix compatibility issue
Browse files Browse the repository at this point in the history
  • Loading branch information
wwmayer committed Jul 5, 2020
1 parent 750c169 commit 6c15e17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Mod/Arch/importIFCHelper.py
Expand Up @@ -568,7 +568,7 @@ def getPlacement(entity,scaling=1000):
if loc:
pl.move(loc)
elif entity.is_a("IfcAxis2Placement2D"):
print("not implemented IfcAxis2Placement2D, ", end="")
print("not implemented IfcAxis2Placement2D, ")
elif entity.is_a("IfcLocalPlacement"):
pl = getPlacement(entity.PlacementRelTo,1) # original placement
relpl = getPlacement(entity.RelativePlacement,1) # relative transf
Expand Down

1 comment on commit 6c15e17

@vocx-fc
Copy link
Contributor

@vocx-fc vocx-fc commented on 6c15e17 Jul 5, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

#3678 and #3679 fix the two errors in the unit tests in Travis.

Please sign in to comment.