Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
force-bdss
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
Service Desk
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
Adham Hashibon
force-bdss
Merge requests
!20
Use ids instead of names in bundles.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Use ids instead of names in bundles.
use-ids-instead-of-names
into
master
Overview
1
Commits
5
Pipelines
0
Changes
1
Merged
Adham Hashibon
requested to merge
use-ids-instead-of-names
into
master
7 years ago
Overview
1
Commits
5
Pipelines
0
Changes
1
Expand
Created by: stefanoborini
Uses IDs instead of "name" to identify the bundles.
0
0
Merge request reports
Viewing commit
5d9ffc57
Prev
Next
Show latest version
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
5d9ffc57
Added use of super() that is compatible with python 2
· 5d9ffc57
Stefano Borini
authored
7 years ago
force_bdss/bdss_application.py
+
1
−
1
Options
@@ -54,7 +54,7 @@ class BDSSApplication(Application):
except
NoMatches
:
print
(
"
No extensions found
"
)
super
().
__init__
(
plugins
=
plugins
)
super
(
BDSSApplication
,
self
).
__init__
(
plugins
=
plugins
)
def
_workflow_default
(
self
):
with
open
(
self
.
workflow_filepath
)
as
f
:
Loading