diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2008-04-17 10:25:39 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2008-04-17 10:25:39 +0200 |
commit | c8ab8375fe4f719ca484b0f395fd3812c73444aa (patch) | |
tree | faf16972e1931fe655c6d8fdff5a14f515cba4a6 /portato/gui/windows | |
parent | c700865daffd778e9e9eada8d2c5b4e37dc2798f (diff) | |
download | portato-c8ab8375fe4f719ca484b0f395fd3812c73444aa.tar.gz portato-c8ab8375fe4f719ca484b0f395fd3812c73444aa.tar.bz2 portato-c8ab8375fe4f719ca484b0f395fd3812c73444aa.zip |
Changed 'is_overlay' to 'is_in_overlay'
Diffstat (limited to '')
-rw-r--r-- | portato/gui/windows/main.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/portato/gui/windows/main.py b/portato/gui/windows/main.py index 99739ae..1962e12 100644 --- a/portato/gui/windows/main.py +++ b/portato/gui/windows/main.py @@ -173,7 +173,7 @@ class PackageTable: self.descLabel.set_label(desc) # overlay - if pkg.is_overlay(): + if pkg.is_in_overlay(): self.overlayLabel.set_label(pkg.get_overlay_path()) self.overlayLabel.show() self.overlayLL.show() |