We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 005107a commit bd1d2b9Copy full SHA for bd1d2b9
RAPIDpy/rapid.py
@@ -734,6 +734,8 @@ def run(self, rapid_namelist_file=""):
734
if not rapid_namelist_file or not os.path.exists(rapid_namelist_file):
735
# generate input file if it does not exist
736
self.generate_namelist_file(temp_rapid_namelist_file)
737
+ with open(temp_rapid_namelist_file, 'r') as file_:
738
+ log(file_.read(), "INFO")
739
else:
740
# update existing file
741
self.update_namelist_file(rapid_namelist_file,
setup.py
@@ -2,7 +2,7 @@
2
3
setup(
4
name='RAPIDpy',
5
- version='2.6.0',
+ version='2.7.0',
6
description='Python interface for RAPID (rapid-hub.org)',
7
long_description='RAPIDpy is a python interface for RAPID that assists '
8
'to prepare inputs, runs the RAPID program, and provides '
0 commit comments