Commit 68279fc81d453bb3a2c5ccf85fcd2b0745c62977

Authored by Alain Klotz
1 parent a7899883
Exists in dev

correction bug config. -> self.

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
config/configpyros.py
... ... @@ -70,8 +70,8 @@ class ConfigPyros:
70 70 """
71 71  
72 72 self._configfile_verify()
73   - errno = config.get_last_errno()
74   - if errno != config.NO_ERROR:
  73 + errno = self.get_last_errno()
  74 + if errno != self.NO_ERROR:
75 75 return
76 76 if self._config_filename_need_to_be_read == False:
77 77 return
... ...