Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bayeswave
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue 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
lscsoft
bayeswave
Merge requests
!284
bayeswave_pipe type error
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
bayeswave_pipe type error
megan.arogeti/bayeswave:pipe-type-error-fix
into
master
Overview
0
Commits
1
Pipelines
1
Changes
1
Merged
Megan Arogeti
requested to merge
megan.arogeti/bayeswave:pipe-type-error-fix
into
master
1 year ago
Overview
0
Commits
1
Pipelines
1
Changes
1
Expand
Fixed type error in line 112 of bayeswave_pipe
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
a84291de
1 commit,
1 year ago
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
BayesWaveUtils/scripts/bayeswave_pipe
+
1
−
1
Options
@@ -109,7 +109,7 @@ def localize_xml(xmlfile, old_path, new_path):
filedata
=
oldxml
.
read
()
# Search and replace on the abs path
newdata
=
filedata
.
replace
(
str
(
old_path
.
encode
()
)
,
str
(
new_path
.
encode
())
)
newdata
=
filedata
.
replace
(
old_path
.
encode
(),
new_path
.
encode
())
# Backup the original xml file
shutil
.
move
(
xmlfile
,
xmlfile
+
'
.bk
'
)
Loading