summaryrefslogtreecommitdiff
path: root/config.py
diff options
context:
space:
mode:
authorJoshua Ismael Haase Hernández <hahj87@gmail.com>2011-02-14 19:36:26 -0600
committerJoshua Ismael Haase Hernández <hahj87@gmail.com>2011-02-14 19:52:32 -0600
commitf923ab304017a71136642ed7b9780441edcaf441 (patch)
tree7fb5b5d6e3a40436bc3bf6537da5d42469781f4d /config.py
parente5b869eade3fbf47cf9ac1b7c6be34dfee14b2c1 (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.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/config.py b/config.py
index bd46688..465a8a8 100644
--- a/config.py
+++ b/config.py
@@ -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