Skip to content

Commit

Permalink
Merge pull request #75 from rlcee/fixu_221027
Browse files Browse the repository at this point in the history
fix underscore in lib name
  • Loading branch information
rlcee authored Oct 27, 2022
2 parents c05153d + e7df74a commit 5477e7b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions python/mu2e_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,11 @@ def __init__(self,env):
# change string Offline/dir/subdir/src to dir_subdir
self.stub = '_'.join(tokens[1:])
if self.repo == "Offline" :
self.libstub = "mu2e_"+self.stub
self.libstub = "mu2e"
else:
self.libstub = self.repo.lower()+"_"+self.stub

self.libstub = self.repo.lower()
if len(self.stub) > 0:
self.libstub = self.libstub+"_"+self.stub
# A few places we use ClassDef in order to enable a class
# to be fully capable at the root prompt
# Using ClassDef forces the dictionary to be linked with the main
Expand Down

0 comments on commit 5477e7b

Please sign in to comment.