CHMedia opened this issue on Mar 30, 2023 · 70 posts
Rhia474 posted Thu, 30 March 2023 at 1:52 PM Online Now!
Where?? Sorry, I need small words and lots of steps... :)venincomix posted at 12:21 PM Thu, 30 March 2023 - #4460000
P13 comes as version '13.0.' (a single "." at the end, not a number).The upgrade to 13 isn't amazing, but EZskin3 isn't working again,lol.
…………………………………………………………
Traceback (most recent call last):
File "E:\poser13\Runtime\Python\EZSkin3-P12-V2\EZSkin3.py", line 40, in <module>
POSER_BUILD = int(poser.AppVersion().rsplit('.', 1)[1])
ValueError: invalid literal for int() with base 10: ''
Maybe insert a simple 0, because this is what should be there. So change this line starting with POSER_BUILD to this:
POSER_BUILD = 0 # int(poser.AppVersion().rsplit('.', 1)[1])
(just add "0 # " after "=").