Skip to content

Commit

Permalink
more ulogger stuff removed
Browse files Browse the repository at this point in the history
format_ulogger_table changed to format_hlogger_table
  • Loading branch information
trmrsh committed May 20, 2021
1 parent 0920651 commit e112c9f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions hipercam/scripts/logsearch.py
Expand Up @@ -14,7 +14,7 @@
import hipercam as hcam
from hipercam import cline, utils
from hipercam.cline import Cline
from hipercam.utils import format_ulogger_table, target_lookup
from hipercam.utils import format_hlogger_table, target_lookup

__all__ = [
"logsearch",
Expand Down Expand Up @@ -205,5 +205,5 @@ def logsearch(args=None):
tab = tab[ok]

output = f"{target.replace(' ','_')}.xlsx"
format_ulogger_table(output, tab, instrument)
format_hlogger_table(output, tab, instrument)
print(f'Wrote {len(tab)} runs to {output}')
2 changes: 1 addition & 1 deletion hipercam/utils.py
Expand Up @@ -15,7 +15,7 @@

__all__ = (
"Vec2D", "add_extension", "sub_extension", "script_args", "rgb",
"format_hlogger_table", "format_ulogger_table", "what_flags",
"format_hlogger_table", "what_flags",
)


Expand Down

0 comments on commit e112c9f

Please sign in to comment.