diff --git a/DataFormats/FWLite/python/__init__.py b/DataFormats/FWLite/python/__init__.py index 35d18457f78cc..1a6b19938c86e 100644 --- a/DataFormats/FWLite/python/__init__.py +++ b/DataFormats/FWLite/python/__init__.py @@ -228,7 +228,7 @@ def getByLabel (self, *args): if len (argsList[0]) > 3: raise RuntimeError, "getByLabel Error: label tuple has too " \ "many arguments '%s'" % argsList[0] - argsList = list(*argsList[0]) + argsList = list(argsList[0]) if( type(argsList[0]) is str and ":" in argsList[0] ): if argsList[0].count(":") > 3: raise RuntimeError, "getByLabel Error: label tuple has too " \ @@ -386,7 +386,7 @@ def getByLabel (self, *args): if len (argsList[0]) > 3: raise RuntimeError, "getByLabel Error: label tuple has too " \ "many arguments '%s'" % argsList[0] - argsList = list(*argsList[0]) + argsList = list(argsList[0]) if( type(argsList[0]) is str and ":" in argsList[0] ): if argsList[0].count(":") > 3: raise RuntimeError, "getByLabel Error: label tuple has too " \ @@ -562,7 +562,7 @@ def getByLabel (self, *args): if len (argsList[0]) > 3: raise RuntimeError, "getByLabel Error: label tuple has too " \ "many arguments '%s'" % argsList[0] - argsList = list(*argsList[0]) + argsList = list(argsList[0]) if( type(argsList[0]) is str and ":" in argsList[0] ): if argsList[0].count(":") > 3: raise RuntimeError, "getByLabel Error: label tuple has too " \