diff options
author | Chris Lumens <clumens@redhat.com> | 2009-07-08 11:39:57 -0400 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2009-07-08 11:40:35 -0400 |
commit | fa569b912a887cadda1715759921cc5c0de1a8e4 (patch) | |
tree | b6ff255d29eca05e4f9c9686c937d1d878da25c9 /yuminstall.py | |
parent | ed17e8f3622f13890fd6f73d8aa6728bc6f260bb (diff) | |
download | anaconda-fa569b912a887cadda1715759921cc5c0de1a8e4.tar.gz anaconda-fa569b912a887cadda1715759921cc5c0de1a8e4.tar.xz anaconda-fa569b912a887cadda1715759921cc5c0de1a8e4.zip |
Make sure to have "self" as an argument.
Diffstat (limited to 'yuminstall.py')
-rw-r--r-- | yuminstall.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yuminstall.py b/yuminstall.py index 5170e949a..d1cb626e6 100644 --- a/yuminstall.py +++ b/yuminstall.py @@ -555,7 +555,7 @@ class AnacondaYum(YumSorter): # We need to make sure $releasever gets set up before .repo files are # read. Since there's no redhat-release package in /mnt/sysimage (and # won't be for quite a while), we need to do our own substutition. - def _getReleasever(): + def _getReleasever(self): from ConfigParser import ConfigParser c = ConfigParser() |