Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
NaviX
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
ETP-HTC
NaviX
Commits
a3caa119
There was a problem fetching the pipeline summary.
Commit
a3caa119
authored
6 years ago
by
Martin Sauter
Browse files
Options
Downloads
Patches
Plain Diff
Fix if requested files appear in double quotes
parent
71023aa1
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Pipeline
#
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
navix/replygenerator/generate_file_list.py
+6
-0
6 additions, 0 deletions
navix/replygenerator/generate_file_list.py
with
6 additions
and
0 deletions
navix/replygenerator/generate_file_list.py
+
6
−
0
View file @
a3caa119
...
...
@@ -52,6 +52,12 @@ def get_files_to_search_from_data(queue_logging, thread_num, data):
queue_logging
.
put
(
"
WARNI:
"
+
str
(
thread_num
)
+
"
: Failed to remove blanks from:
"
+
str
(
data
)
+
"
\n
Python-ERROR:
"
+
str
(
e
))
try
:
data
=
data
.
replace
(
"
\"\"
"
,
"
\"
"
)
except
Exception
as
e
:
queue_logging
.
put
(
"
WARNI:
"
+
str
(
thread_num
)
+
"
: Failed to remove double
\"
from:
"
+
str
(
data
)
+
"
\n
Python-ERROR:
"
+
str
(
e
))
while
True
:
# check if files are separated by ","
try
:
...
...
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