From 5cb0eaa5da2aaab0da15d3199a54eb81824e2cd4 Mon Sep 17 00:00:00 2001 From: Anne Philipp <anne.philipp@univie.ac.at> Date: Fri, 14 Dec 2018 00:57:53 +0100 Subject: [PATCH] renamed list_files function --- source/python/classes/UioFiles.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/python/classes/UioFiles.py b/source/python/classes/UioFiles.py index 28d3986..7a1257c 100644 --- a/source/python/classes/UioFiles.py +++ b/source/python/classes/UioFiles.py @@ -87,12 +87,12 @@ class UioFiles(object): self.pattern = pattern self.files = [] - self.__list_files__(self.path) + self._list_files(self.path) return #@profiling.timefn - def __list_files__(self, path): + def _list_files(self, path): '''Lists all files in the directory with the matching regular expression pattern. -- GitLab