Skip to content
Snippets Groups Projects
Commit 02075457 authored by Johannes Schumann's avatar Johannes Schumann
Browse files

Add default value for temporary folder to proposal interpolation tables

parent 5656e160
No related branches found
No related tags found
1 merge request!2Tau propagation
......@@ -90,7 +90,8 @@ class Config(object):
@property
def proposal_itp_tables(self):
return self.get(PROPOSAL_SECTION, "itp_table_path")
default_path = abspath(join(dirname(__file__), "../.tables"))
return self.get(PROPOSAL_SECTION, "itp_table_path", default_path)
@proposal_itp_tables.setter
def proposal_itp_tables(self, value):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment