summaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
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)