Skip to content

Commit

Permalink
Fix copy bug, version 0.0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
mmatl committed Jul 18, 2019
1 parent 3ec2b8e commit e3cb2da
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion urdfpy/urdf.py
Original file line number Diff line number Diff line change
Expand Up @@ -1129,7 +1129,7 @@ def copy(self, prefix=''):
geometry=self.geometry.copy(prefix=prefix),
name='{}{}'.format(prefix, self.name),
origin=self.origin,
material=self.material.copy(prefix=prefix),
material=(self.material.copy(prefix=prefix) if self.material else None),
)


Expand Down
2 changes: 1 addition & 1 deletion urdfpy/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.0.11'
__version__ = '0.0.12'

0 comments on commit e3cb2da

Please sign in to comment.