summaryrefslogtreecommitdiff
path: root/config.py
diff options
context:
space:
mode:
authorJoshua Ismael Haase Hernández <hahj87@gmail.com>2011-03-05 13:13:41 -0600
committerJoshua Ismael Haase Hernández <hahj87@gmail.com>2011-03-05 13:13:41 -0600
commit5a4480f1f3e2e7d0aec965b21f72f4454618333e (patch)
treea41ed8f00b5e3285db859d0d13d18bbafd15656c /config.py
parent9793aaf4e9a716f126e71a1db412cbd32f161593 (diff)
* Added «depends» field to Package class.
* Merged tests for filter functions in test_filter.py * Added testfiles for test_filter.py in test directory * Added pkginfo_from_desc function to filter.py
Diffstat (limited to 'config.py')
-rw-r--r--config.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/config.py b/config.py
index 6420355..688d6b5 100644
--- a/config.py
+++ b/config.py
@@ -62,7 +62,8 @@ class Package:
"release" : False,
"arch" : False,
"license" : False,
- "location": False}
+ "location": False,
+ "depends" : False,}
def __setitem__(self, key, item):
if key in self.package_info.keys():