Skip to content
This repository has been archived by the owner on Nov 1, 2023. It is now read-only.

Commit

Permalink
fix deploy.py
Browse files Browse the repository at this point in the history
  • Loading branch information
chkeita committed Aug 16, 2022
1 parent fef3048 commit 29ffad2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/deployment/deploylib/registration.py
Original file line number Diff line number Diff line change
Expand Up @@ -367,10 +367,10 @@ def add_application_password_impl(
password_request = {
"passwordCredential": {
"displayName": "%s" % password_name,
"startDateTime": "%s" % datetime.now(TZ_UTC).strftime("%Y-%m-%dT%H:%M.%fZ"),
"startDateTime": "%s" % datetime.now(TZ_UTC).strftime("%Y-%m-%dT%H:%M:%SZ"),
"endDateTime": "%s"
% (datetime.now(TZ_UTC) + timedelta(days=365)).strftime(
"%Y-%m-%dT%H:%M.%fZ"
"%Y-%m-%dT%H:%M:%SZ"
),
}
}
Expand Down

0 comments on commit 29ffad2

Please sign in to comment.