Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GetListRow: fix tab separated values issue #28348

Merged
merged 2 commits into from Jul 20, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 7 additions & 0 deletions Packs/CommonScripts/ReleaseNotes/1_12_5.md
@@ -0,0 +1,7 @@

#### Scripts

##### GetListRow

- Fixed an issue where using a tab character as separator didn't parsed correctly.
ilappe marked this conversation as resolved.
Show resolved Hide resolved
- Updated the docker image to: *demisto/python3:3.10.12.65389*.
2 changes: 1 addition & 1 deletion Packs/CommonScripts/Scripts/GetlistRow/GetListRow.py
Expand Up @@ -80,7 +80,7 @@ def main():
header = args.get('header', '')
value = args.get('value', '')
list_separator = args.get('list_separator', ',') or ','
list_separator = list_separator.replace('\\t', ' ').replace('\t', ' ')
list_separator = list_separator.replace('\\t', '\t')

return_results(parse_list(parse_all, header, value, list_name, list_separator))

Expand Down
2 changes: 1 addition & 1 deletion Packs/CommonScripts/Scripts/GetlistRow/GetListRow.yml
Expand Up @@ -42,7 +42,7 @@ script: '-'
subtype: python3
timeout: '0'
type: python
dockerimage: demisto/python3:3.10.12.63474
dockerimage: demisto/python3:3.10.12.65389
runas: DBotWeakRole
tests:
- No tests (auto formatted)
Expand Down
2 changes: 1 addition & 1 deletion Packs/CommonScripts/pack_metadata.json
Expand Up @@ -2,7 +2,7 @@
"name": "Common Scripts",
"description": "Frequently used scripts pack.",
"support": "xsoar",
"currentVersion": "1.12.4",
"currentVersion": "1.12.5",
"author": "Cortex XSOAR",
"url": "https://www.paloaltonetworks.com/cortex",
"email": "",
Expand Down