Commit 68279fc81d453bb3a2c5ccf85fcd2b0745c62977
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,8 +70,8 @@ class ConfigPyros: | ||
70 | """ | 70 | """ |
71 | 71 | ||
72 | self._configfile_verify() | 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 | return | 75 | return |
76 | if self._config_filename_need_to_be_read == False: | 76 | if self._config_filename_need_to_be_read == False: |
77 | return | 77 | return |