diff options
Diffstat (limited to 'photoblaster/param/int_.py')
| -rw-r--r-- | photoblaster/param/int_.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/photoblaster/param/int_.py b/photoblaster/param/int_.py index 6e6d066..eb42e7f 100644 --- a/photoblaster/param/int_.py +++ b/photoblaster/param/int_.py @@ -13,7 +13,7 @@ class Int(Param): if value: self.value = int(value) else: - self.value = "" + self.value = 0 except Exception as e: self.err_warn("Not an int: %s" % str(value)) self.err_warn(str(e)) |
