Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LOFAR
Manage
Activity
Members
Labels
Plan
Issues
Wiki
Jira issues
Open Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
RadioObservatory
LOFAR
Commits
79ba9e62
Commit
79ba9e62
authored
9 years ago
by
Jorrit Schaap
Browse files
Options
Downloads
Patches
Plain Diff
Task #8887: parset parser cannot handle unicode, so convert to string
parent
3a3ff830
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
SAS/ResourceAssignment/Services/src/RATaskSpecified.py
+3
-3
3 additions, 3 deletions
SAS/ResourceAssignment/Services/src/RATaskSpecified.py
with
3 additions
and
3 deletions
SAS/ResourceAssignment/Services/src/RATaskSpecified.py
+
3
−
3
View file @
79ba9e62
...
@@ -66,13 +66,13 @@ def resourceIndicatorsFromParset( parset ):
...
@@ -66,13 +66,13 @@ def resourceIndicatorsFromParset( parset ):
"""
Some conversion functions for common parameter-value types.
"""
"""
Some conversion functions for common parameter-value types.
"""
def
strvector
(
value
):
def
strvector
(
value
):
return
PyParameterValue
(
value
,
True
).
getStringVector
()
return
PyParameterValue
(
str
(
value
)
,
True
).
getStringVector
()
def
intvector
(
value
):
def
intvector
(
value
):
return
PyParameterValue
(
value
,
True
).
getIntVector
()
return
PyParameterValue
(
str
(
value
)
,
True
).
getIntVector
()
def
bool
(
value
):
def
bool
(
value
):
return
PyParameterValue
(
value
,
True
).
getBool
()
return
PyParameterValue
(
str
(
value
)
,
True
).
getBool
()
# =====================================
# =====================================
# Parset meta info
# Parset meta info
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment