Skip to content

Commit ffa0f29

Browse files
author
janvanrijn
committed
changed logger info, closing #146
1 parent c20271f commit ffa0f29

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

openml/datasets/dataset.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,8 +200,8 @@ def get_data(self, target=None, target_dtype=int, include_row_id=False,
200200
to_exclude.extend(self.ignore_attributes)
201201

202202
if len(to_exclude) > 0:
203-
logger.info("Going to remove the following row_id_attributes:"
204-
" %s" % self.row_id_attribute)
203+
logger.info("Going to remove the following attributes:"
204+
" %s" % to_exclude)
205205
keep = np.array([True if column not in to_exclude else False
206206
for column in attribute_names])
207207
data = data[:, keep]

0 commit comments

Comments
 (0)