Sending Date Only to Fantastical 2

Hello,
I am trying to process a credit card bill by renaming it, pulling out the due date and sending that date to Fantastical 2.
I am getting the due date using the following "Contents contain match" - Dec 31, 1999. By doing this match, I am successful at matching the due date on the bill.
In my "Do" list, I am running the following embedded AppleScript and passing in Due Date as an inputAttribute:
set a to "Mastercard Due "
set b to item 1 of inputAttributes
set c to " reminder 5 days before in calendar Calendar"
set d to a & b & c
tell application "Fantastical 2"
parse sentence d with add immediately
end tell
This works successfully, but it sends the following to Fantastical 2:
Mastercard Due Monday, May 1, 2017 at 5:19:32 PM reminder 5 days before in calendar Calendar
As you can see it is sending what happens to be the current time with it (in red above). Is there anyway to parse out just the date from the inputAttributes so that I can concatenate my own time to the statement?
Thanks in advance.
I am trying to process a credit card bill by renaming it, pulling out the due date and sending that date to Fantastical 2.
I am getting the due date using the following "Contents contain match" - Dec 31, 1999. By doing this match, I am successful at matching the due date on the bill.
In my "Do" list, I am running the following embedded AppleScript and passing in Due Date as an inputAttribute:
set a to "Mastercard Due "
set b to item 1 of inputAttributes
set c to " reminder 5 days before in calendar Calendar"
set d to a & b & c
tell application "Fantastical 2"
parse sentence d with add immediately
end tell
This works successfully, but it sends the following to Fantastical 2:
Mastercard Due Monday, May 1, 2017 at 5:19:32 PM reminder 5 days before in calendar Calendar
As you can see it is sending what happens to be the current time with it (in red above). Is there anyway to parse out just the date from the inputAttributes so that I can concatenate my own time to the statement?
Thanks in advance.