When bulk editing custom series-type columns and not provding a series number use 1 as the default, instead of None

This commit is contained in:
Kovid Goyal 2013-01-07 17:26:28 +05:30
commit 605c97767d

View File

@ -532,6 +532,8 @@ class CustomColumns(object):
if data['datatype'] == 'series' and extra is None:
(val, extra) = self._get_series_values(val)
if extra is None:
extra = 1.0
books_to_refresh = set([])
if data['normalized']: