blob: 5c44ac5704cea5ce54c6b64d49b4ea6bbdb8b487 [file] [log] [blame]
martin f. krafftf37f0682013-06-14 16:36:20 +02001#
2# -*- coding: utf-8 -*-
3#
4# This file is part of reclass (http://github.com/madduck/reclass)
5#
6# Copyright © 2007–13 martin f. krafft <madduck@madduck.net>
7# Released under the terms of the Artistic Licence 2.0
8#
9from base import BaseListMerger
10
11class ListExtend(BaseListMerger):
12
13 def _combine(self, first, second):
martin f. kraffta95eaa32013-06-16 11:56:41 +020014 if second is not None:
15 if isinstance(second, list):
16 first.extend(second)
17 else:
18 first.append(second)
martin f. krafftf37f0682013-06-14 16:36:20 +020019 return first