cc-4105: added docs. removed unused method

This commit is contained in:
Rudi Grinberg 2012-08-13 15:12:54 -04:00
parent 12a5edfd5c
commit 6238424113
5 changed files with 14 additions and 8 deletions

View file

@ -94,14 +94,23 @@ class Manager(Loggable):
recorded_path=recorded_path)
def get_problem_files_path(self):
"""
returns the path where problem files should go
"""
return self.organize['problem_files_path']
def set_problem_files_path(self, new_path):
"""
Set the path where problem files should go
"""
self.organize['problem_files_path'] = new_path
self.organize['problem_handler'] = \
ProblemFileHandler( PathChannel(signal='badfile',path=new_path) )
def get_recorded_path(self):
"""
returns the path of the recorded directory
"""
return self.organize['recorded_path']
def set_recorded_path(self, new_path):