Skip to content

Commit

Permalink
Fix typo, was accessing wrong catalog
Browse files Browse the repository at this point in the history
  • Loading branch information
pbeaucage committed Mar 29, 2024
1 parent 1685f78 commit 31a7f45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PyHyperScattering/SST1RSoXSDB.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def __init__(
self.c = from_profile("rsoxs", **catalog_kwargs)
except tiled.profiles.ProfileNotFound:
print('could not directly connect to Tiled using a system profile.\n Making network connection.\n Enter your BNL credentials now or pass an api key like catalog_kwargs={"api_key":"..."}.')
self.c = from_uri('https://tiled.nsls2.bnl.gov',**catalog_kwargs)
self.c = from_uri('https://tiled.nsls2.bnl.gov',**catalog_kwargs)['rsoxs']['raw']
else:
self.c = catalog
if use_chunked_loading:
Expand Down

0 comments on commit 31a7f45

Please sign in to comment.