diff --git a/openlamb.py b/openlamb.py index 84bf9c1..442fbcf 100755 --- a/openlamb.py +++ b/openlamb.py @@ -65,7 +65,7 @@ def process(dati, sensore, csv): results_df["data"] = pd.to_datetime(results_df["data"]) results_df = results_df.replace(-9999, np.nan) except: - print('\nERRORE: dati non disponibili per il sensore %s\n') % sensore + print('\nERRORE: dati non disponibili per il sensore %s\n' % sensore) traceback.print_exc() sys.exit(-1) results_df.sort_values(by=['data'], inplace=True)