Skip to content

Commit 7c8b43b

Browse files
committed
improve toomanyjobsfound error message
1 parent a2d41b1 commit 7c8b43b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ceph_devstack/resources/ceph/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ async def logs(
237237
except FileNotFoundError:
238238
logger.error("No log file found")
239239
except TooManyJobsFound as e:
240-
msg = "Found too many jobs ({jobs}) for target run. Please pick a job id with -j flag.".format(
240+
msg = "Found too many jobs ({jobs}) for target run. Please pick a job id with -j option.".format(
241241
jobs=", ".join(e.jobs)
242242
)
243243
logger.error(msg)

0 commit comments

Comments
 (0)