diff --git a/tornado/options.py b/tornado/options.py index 05e6f6f8..e50dbfe2 100644 --- a/tornado/options.py +++ b/tornado/options.py @@ -232,8 +232,7 @@ class _Option(object): str: self._parse_string, }.get(self.type, self.type) if self.multiple: - if self._value is None: - self._value = [] + self._value = [] for part in value.split(","): if self.type in (int, long): # allow ranges of the form X:Y (inclusive at both ends)