We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc490b5 commit c9bfe75Copy full SHA for c9bfe75
demon
@@ -132,7 +132,7 @@ class DataProcessor:
132
return False
133
134
def get_latest_analyze_file(self):
135
- list_of_files = glob.glob(f'{self.analyze_base_path}*.analyze')
+ list_of_files = glob.glob(f'{self.analyze_base_path}/*.analyze')
136
latest_file = max(list_of_files, key=os.path.getctime)
137
return latest_file
138
@@ -153,7 +153,7 @@ class DataProcessor:
153
'humidity': []
154
}
155
self._dt_start_time = datetime.now()
156
- self.analyze_base_path = '/home/astroberry/.local/share/kstars/analyze/'
+ self.analyze_base_path = '/home/astroberry/.local/share/kstars/analyze'
157
self.logger = print
158
159
0 commit comments