Skip to content

Commit

Permalink
update file output pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
larsbuntemeyer committed Jul 31, 2023
1 parent cb8a36e commit 7fea60e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pyremo/conventions.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ def output_pattern(
"""
wild = "*"
if middle is None:
middle = ""
# if middle is None:
# middle = ""
if expid is None:
expid = wild
else:
expid = f"{int(expid):06d}"
if type in ["e", "n", "p"]:
if type in ["e", "n", "p"] and middle is None:
if code is None:
middle = "_c*_"
else:
Expand Down

0 comments on commit 7fea60e

Please sign in to comment.