Merge pull request #10707 from mscherer/fix_deprecation_warning
Pylint warning, the method _warning is called warning
This commit is contained in:
commit
566399422f
1 changed files with 1 additions and 1 deletions
|
@ -114,7 +114,7 @@ class Display:
|
||||||
|
|
||||||
def system_warning(self, msg):
|
def system_warning(self, msg):
|
||||||
if C.SYSTEM_WARNINGS:
|
if C.SYSTEM_WARNINGS:
|
||||||
self._warning(msg)
|
self.warning(msg)
|
||||||
|
|
||||||
def banner(self, msg, color=None):
|
def banner(self, msg, color=None):
|
||||||
'''
|
'''
|
||||||
|
|
Loading…
Reference in a new issue