Skip to content

Commit

Permalink
Merge pull request #631 from danforthcenter/rotate-print-filename
Browse files Browse the repository at this point in the history
add underscore to filename of debug plot in rotate.py
  • Loading branch information
nfahlgren authored Oct 13, 2020
2 parents ea0bf36 + 59f743f commit ac96930
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plantcv/plantcv/rotate.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def rotate(img, rotation_deg, crop):

if params.debug == 'print':
print_image(rotated_img, os.path.join(params.debug_outdir,
str(params.device) + str(rotation_deg) + '_rotated_img.png'))
str(params.device) + '_' + str(rotation_deg) + '_rotated_img.png'))

elif params.debug == 'plot':
if len(np.shape(img)) == 3:
Expand Down

0 comments on commit ac96930

Please sign in to comment.