diff options
author | Jeremy Katz <katzj@redhat.com> | 2006-06-13 16:11:44 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2006-06-13 16:11:44 +0000 |
commit | 6f0fdf0a3e66a6c65203565d4bcb13a7dee0967b (patch) | |
tree | 5b7011ca8c2919f372e8992705b2beef1f1c0b37 /yuminstall.py | |
parent | e0394c37f4d080ae0f1e41ed48b861f6827c1e51 (diff) | |
download | anaconda-6f0fdf0a3e66a6c65203565d4bcb13a7dee0967b.tar.gz anaconda-6f0fdf0a3e66a6c65203565d4bcb13a7dee0967b.tar.xz anaconda-6f0fdf0a3e66a6c65203565d4bcb13a7dee0967b.zip |
2006-06-13 Jeremy Katz <katzj@redhat.com>
* yuminstall.py (simpleCallback.callback): Another API fix
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 4521d43c5..fef476593 100644 --- a/yuminstall.py +++ b/yuminstall.py @@ -137,7 +137,7 @@ class simpleCallback: while self.files[nvra] == None: try: - fn = repo.get(relative=path, local=po.localPkg()) + fn = repo.getAttribute(relative=path, local=po.localPkg()) f = open(fn, 'r') self.files[nvra] = f |