diff --git a/src/panoptes/pocs/camera/gphoto/canon.py b/src/panoptes/pocs/camera/gphoto/canon.py index f343be249..8b9fa26a5 100644 --- a/src/panoptes/pocs/camera/gphoto/canon.py +++ b/src/panoptes/pocs/camera/gphoto/canon.py @@ -56,9 +56,6 @@ def connect(self): copy_right = f'{owner_name}_{current_time().datetime:%Y}' prop2value = { - 'artist': artist_name, - 'copyright': copy_right, - 'ownername': owner_name, 'drivemode': 'Single', 'focusmode': 'Manual', 'imageformat': 'RAW', @@ -68,6 +65,9 @@ def connect(self): 'reviewtime': 'None', 'iso': 100, 'shutterspeed': 'bulb', + 'artist': artist_name, + 'copyright': copy_right, + 'ownername': owner_name, } self.set_properties(prop2value=prop2value)