summaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
authorYaakov M. Nemoy <loupgaroublond@gmail.com>2009-01-09 17:28:28 -0500
committerYaakov M. Nemoy <loupgaroublond@gmail.com>2009-01-09 17:28:28 -0500
commit53d8493edc8552bd95a1fae4b6aef472b4bc10d2 (patch)
treea20d17b40f22c72ad6258abf8d50e9d69de618fb /modules
parentc27ff3ce07de79215b58f5fd10ff175424cba7cb (diff)
downloadfedora-devshell-53d8493edc8552bd95a1fae4b6aef472b4bc10d2.tar.gz
fedora-devshell-53d8493edc8552bd95a1fae4b6aef472b4bc10d2.tar.xz
fedora-devshell-53d8493edc8552bd95a1fae4b6aef472b4bc10d2.zip
Removes obsolete parent property
Diffstat (limited to 'modules')
-rw-r--r--modules/directory.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/modules/directory.py b/modules/directory.py
index 16e5a58..22cdec5 100644
--- a/modules/directory.py
+++ b/modules/directory.py
@@ -105,15 +105,6 @@ class Directory(Module):
return self.cfg['name']
@property
- def parent(self):
- ''' the parent directory holding the directory on the file system
-
- this is determined at run time, and used to build absolute path names
- out of elements of the directory
- '''
- return self.cfg['parent']
-
- @property
def dir(self):
'''absolute pathname to the directory where it is held on the file system'''
return join(self.parent, self.name)