View Single Post
Old 30th June 2018, 21:55   #12  |  Link
Selur
Registered User
 
Selur's Avatar
 
Join Date: Oct 2001
Location: Germany
Posts: 7,277
@ChaosKing: thanks, that helped!
btw. the finesharp script from Wolfberry is broken,
instead of:
Code:
ldmp = float(ldmp)
if ldmp is None:
      ldmp = sstr + 0.1
this:
Code:
if ldmp is None:
      ldmp = sstr + 0.1
    else:
      ldmp = float(ldmp)
needs to be used. 'ldmp = float(ldmp)' will fail otherwise when ldmp is None.

Cu Selur
__________________
Hybrid here in the forum, homepage
Selur is offline   Reply With Quote