Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
LbScripts
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
LHCb Core Software
LbScripts
Merge requests
!13
fixed bug introduced with commit
6b60a307
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
fixed bug introduced with commit
6b60a307
clemenci/LbScripts:LBCORE-1001
into
master
Overview
1
Commits
1
Changes
Merged
Marco Clemencic
requested to merge
clemenci/LbScripts:LBCORE-1001
into
master
9 years ago
Overview
1
Commits
1
Changes
-
Expand
The fix for
LBCORE-1001
introduced a problem preventing lb-run and lb-dev to work.
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
6a5a316f
1 commit,
9 years ago
+
2
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
LbConfiguration/python/LbConfiguration/SP2/lookup.py
+
2
−
2
Options
@@ -11,12 +11,12 @@
__author__ = 'Marco Clemencic <marco.clemencic@cern.ch>'
import os
import re
import logging
# FIXME: when we drop Python 2.4, this should become 'from . import path'
from LbConfiguration.SP2 import path, Error
from LbConfiguration.SP2.version import DEFAULT_VERSION, versionKey
from LbConfiguration.SP2.version import DEFAULT_VERSION, versionKey as _vkey
versionKey = lambda x: _vkey(x[0])
log = logging.getLogger(__name__)
Loading