Skip to content

Commit bd1d2b9

Browse files
authored
works with geoglows 2
1 parent 005107a commit bd1d2b9

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

RAPIDpy/rapid.py

+2
Original file line numberDiff line numberDiff line change
@@ -734,6 +734,8 @@ def run(self, rapid_namelist_file=""):
734734
if not rapid_namelist_file or not os.path.exists(rapid_namelist_file):
735735
# generate input file if it does not exist
736736
self.generate_namelist_file(temp_rapid_namelist_file)
737+
with open(temp_rapid_namelist_file, 'r') as file_:
738+
log(file_.read(), "INFO")
737739
else:
738740
# update existing file
739741
self.update_namelist_file(rapid_namelist_file,

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name='RAPIDpy',
5-
version='2.6.0',
5+
version='2.7.0',
66
description='Python interface for RAPID (rapid-hub.org)',
77
long_description='RAPIDpy is a python interface for RAPID that assists '
88
'to prepare inputs, runs the RAPID program, and provides '

0 commit comments

Comments
 (0)