Skip to content

Commit

Permalink
Write .hist files to --outdir directory
Browse files Browse the repository at this point in the history
  • Loading branch information
ggermain committed Oct 21, 2021
1 parent 9171a86 commit 6640e21
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion acis_thermal_check/state_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ class ACISStateBuilder(StateBuilder):
def __init__(self, interrupt=False,
backstop_file=None,
nlet_file=None,
outdir = None,
outdir=None,
verbose=2, logger=None):
"""
Give the ACISStateBuilder arguments that were passed in
Expand Down
2 changes: 1 addition & 1 deletion acis_thermal_check/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ def make_state_builder(name, args):
state_builder = builder_class(interrupt=args.interrupt,
backstop_file=args.backstop_file,
nlet_file=args.nlet_file,
outdir = args.outdir,
outdir=args.outdir,
verbose=args.verbose,
logger=mylog)
else:
Expand Down

0 comments on commit 6640e21

Please sign in to comment.