diff --git a/python/lsst/obs/lsst/translators/lsst.py b/python/lsst/obs/lsst/translators/lsst.py index 27c3e3a87..d569e6b67 100644 --- a/python/lsst/obs/lsst/translators/lsst.py +++ b/python/lsst/obs/lsst/translators/lsst.py @@ -451,8 +451,8 @@ def unpack_exposure_id(exposure_id): seqnum : `int` Sequence number. controller : `str` - Controller code. Will be `O` (but should be ignored) for IDs - produced by calling `compute_exposure_id` with ``controller=None`. + Controller code. Will be ``O`` (but should be ignored) for IDs + produced by calling `compute_exposure_id` with ``controller=None``. """ dayobs, seqnum = divmod(exposure_id, 10**_SEQNUM_MAXDIGITS) controller_index = dayobs // _CONTROLLER_INCREMENT - 2