Part: Fixed python representation of Part2DObject - fixes #1387

This commit is contained in:
Yorik van Havre
2014-02-24 16:10:51 -03:00
parent bab0c366a7
commit 3f99b6ec26
2 changed files with 12 additions and 3 deletions

View File

@@ -12,7 +12,7 @@ using namespace Part;
// returns a string which represents the object e.g. when printed in python
std::string Part2DObjectPy::representation(void) const
{
return std::string("<Part2DObject object>");
return std::string("<Part::Part2DObject>");
}