Skip to content
Snippets Groups Projects

Bugfix: Cachepath was overwriting the parameterpath for the fingerfiles,...

Merged Holger Niemann requested to merge Holgers into master
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
+ 2
2
# -*- coding: utf-8 -*-
# -*- coding: utf-8 -*-
"""
"""
Created on Tue Jun 5 09:26:06 2018
Created on Tue Jun 5 09:26:06 2018
Version: 3.4.4
Version: 3.6.1
@author: holn
@author: holn
constants and config parameters
constants and config parameters
"""
"""
@@ -28,7 +28,7 @@ try:
@@ -28,7 +28,7 @@ try:
if line.split("=")[0]=='cachepath':
if line.split("=")[0]=='cachepath':
cpath = database = eval(line.split("=")[1].strip())
cpath = database = eval(line.split("=")[1].strip())
if cpath == "":
if cpath == "":
cpath = parameter_file_path = ospath.join(ospath.dirname(__file__), 'cache')
cpath = ospath.join(ospath.dirname(__file__), 'cache')
cFile.close()
cFile.close()
except Exception as E:
except Exception as E:
archivepath="http://archive-webapi.ipp-hgw.mpg.de/Test/raw/"
archivepath="http://archive-webapi.ipp-hgw.mpg.de/Test/raw/"
Loading