Skip to content

Commit

Permalink
forgot a plus sign on path
Browse files Browse the repository at this point in the history
  • Loading branch information
matiasandina committed Oct 5, 2021
1 parent 970f5e8 commit f5413cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion thermal_camera/triggered_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def create_filename(datetime, ext=".jpg"):
rec_hour = hour(datetime)
make_dir("/" + rec_date)
make_dir("/" + rec_date + "/" + rec_hour)
filename = "/" + rec_date + "/" + rec_hour "/" + timestamp(datetime)
filename = "/" + rec_date + "/" + rec_hour + "/" + timestamp(datetime)
filename = filename + "_capture" + ext
print(filename)
return filename
Expand Down

0 comments on commit f5413cc

Please sign in to comment.