diff --git a/pisi/db/installdb.py b/pisi/db/installdb.py index 02c6d932..c9e4dcf4 100644 --- a/pisi/db/installdb.py +++ b/pisi/db/installdb.py @@ -212,7 +212,7 @@ class InstallDB(lazydb.LazyDB): def __create_dependency(self, depStr): if "" in depStr: anydependency = pisi.specfile.AnyDependency() - for dep in re.compile('(.*?)').findall(depStr): + for dep in re.compile('(.*?)').findall(depStr): anydependency.dependencies.append(self.__make_dependency(dep)) return anydependency else: