46a47,51
> def makeList(objOrList):
> if isinstance(objOrList, list):
> return objOrList
> return [objOrList]
>