Skip to content

Commit

Permalink
Fixed incomplete information was passed to spooler regex
Browse files Browse the repository at this point in the history
  • Loading branch information
jitkang authored and neilmunday committed Nov 20, 2023
1 parent 326c244 commit a18576b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/slurmmail/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -790,7 +790,7 @@ def spool_mail_main():
die("Incorrect number of command line arguments")

try:
info = sys.argv[2].split(",", maxsplit=1)[0]
info = sys.argv[2]
logging.debug("info str: %s", info)
match = None
if "Array" in info:
Expand Down

0 comments on commit a18576b

Please sign in to comment.