diff options
author | Joshua Ismael Haase Hernández <hahj87@gmail.com> | 2011-02-14 19:36:26 -0600 |
---|---|---|
committer | Joshua Ismael Haase Hernández <hahj87@gmail.com> | 2011-02-14 19:52:32 -0600 |
commit | f923ab304017a71136642ed7b9780441edcaf441 (patch) | |
tree | 7fb5b5d6e3a40436bc3bf6537da5d42469781f4d /config.py | |
parent | e5b869eade3fbf47cf9ac1b7c6be34dfee14b2c1 (diff) |
* TestCase for pkginfo_from_rsync_output
* Corrected __eq__ method in Package class
* Corrected pkginfo_from_rsync_output
Diffstat (limited to 'config.py')
-rw-r--r-- | config.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -82,7 +82,7 @@ class Package: if not isinstance(x, Package): return False for key in self.package_info.keys(): - if x[key] != self[key]: + if x[key] != self.package_info[key]: return False else: return True |