diff options
author | Chris Lumens <clumens@redhat.com> | 2008-08-29 10:47:38 -0400 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2008-08-29 10:47:38 -0400 |
commit | e57884969e4bed420bc6226c6f3e97d1e50cd37c (patch) | |
tree | 12740020723254cc68e25dd35e315dd0dc8a8cfc | |
parent | ff0edf82ade5db70cf10e3a9d8ddfab632b54335 (diff) | |
download | anaconda-e57884969e4bed420bc6226c6f3e97d1e50cd37c.tar.gz anaconda-e57884969e4bed420bc6226c6f3e97d1e50cd37c.tar.xz anaconda-e57884969e4bed420bc6226c6f3e97d1e50cd37c.zip |
doLoggingSetup has grown some new arguments (#460654).
-rw-r--r-- | yuminstall.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/yuminstall.py b/yuminstall.py index 9a4404aff..6f5063b3d 100644 --- a/yuminstall.py +++ b/yuminstall.py @@ -580,7 +580,8 @@ class AnacondaYum(YumSorter): YumSorter.getReposFromConfig(self) # Override this method so yum doesn't nuke our existing logging config. - def doLoggingSetup(self, debuglevel, errorlevel): + def doLoggingSetup(self, debuglevel, errorlevel, syslog_indent=None, + syslog_facility=None): pass def doConfigSetup(self, fn='/etc/yum.conf', root='/'): |