-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #95 from JohnStrunk/acct-switch
- Loading branch information
Showing
2 changed files
with
9 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -146,7 +146,8 @@ | |
"outputs": [], | ||
"source": [ | ||
"# Get a list of the custom fields in this issue by finding all fields that start with \"customfield_\"\n", | ||
"custom_fields = [k for k in issue[\"fields\"].keys() if k.startswith(\"customfield_\")]\n", | ||
"custom_fields = [k for k in issue[\"fields\"].keys()\n", | ||
" if k.startswith(\"customfield_\")]\n", | ||
"for field in custom_fields:\n", | ||
" if issue[\"fields\"].get(field, None) is None:\n", | ||
" continue\n", | ||
|
@@ -287,7 +288,7 @@ | |
"metadata": {}, | ||
"outputs": [], | ||
"source": [ | ||
"jira.user(username=\"assisted-installer-bot\")" | ||
"jira.user(username=\"[email protected]\")" | ||
] | ||
}, | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters