From 11b5610f5b68592e63377fcb361cf59357df798f Mon Sep 17 00:00:00 2001 From: Kevin Bates Date: Thu, 30 May 2019 06:47:31 -0700 Subject: [PATCH] make comment more clear --- traitlets/config/application.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/traitlets/config/application.py b/traitlets/config/application.py index c45d701a..e7c28e98 100644 --- a/traitlets/config/application.py +++ b/traitlets/config/application.py @@ -768,7 +768,7 @@ def load_config_file(self, filename, path=None): raise_config_file_errors=self.raise_config_file_errors, ): new_config.merge(config) - if filename not in self._loaded_config_files: # only add if not present (support reloads) + if filename not in self._loaded_config_files: # only add to list of loaded files if not previously loaded self._loaded_config_files.append(filename) # add self.cli_config to preserve CLI config priority new_config.merge(self.cli_config)