We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ee37ca8 + 6eac328 commit fa20a31Copy full SHA for fa20a31
Utilities/Python/fdsplotlib.py
@@ -419,7 +419,8 @@ def dataplot(config_filename,**kwargs):
419
# --- Create new figure or reuse last one ---
420
if pp.Plot_Filename != Plot_Filename_Last:
421
if verbose:
422
- print(f"Generating plot {irow + 2} {pltdir}{pp.Plot_Filename}...")
+ csv_rownum = int(row["__orig_index__"]) + header_rows + 1 # true CSV 1-based line
423
+ print(f"Generating plot {csv_rownum} {pltdir}{pp.Plot_Filename}...")
424
if close_figs:
425
plt.close('all')
426
first_plot = True
0 commit comments