Skip to content

Commit b286158

Browse files
committed
debugging for filename globbing
1 parent 2fb7b2e commit b286158

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

countess/core/plugins.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,7 @@ def __init__(self, *a, **k):
170170
def filenames_and_params(self):
171171
for file_param in self.files:
172172
for filename in glob.iglob(file_param.filename.value):
173+
logger.debug("FileInputPlugin.filenames_and_params glob(%s) => %s", repr(file_param.filename.value), repr(filename))
173174
yield filename, file_param
174175

175176
def read_file_to_dataframe(self, filename: str, file_param: BaseParam, row_limit=None) -> Any:

0 commit comments

Comments
 (0)