Skip to content

Commit

Permalink
rebase me
Browse files Browse the repository at this point in the history
  • Loading branch information
jmeyers314 committed Aug 5, 2022
1 parent 75a78ee commit f8e69f4
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions python/lsst/obs/lsst/script/generateCamera.py
Original file line number Diff line number Diff line change
Expand Up @@ -316,10 +316,9 @@ def indent():
def main():
args = build_argparser().parse_args()

generateCamera(args.outputFile, args.path)
# try:
# generateCamera(args.outputFile, args.path)
# except Exception as e:
# print(f"{e}", file=sys.stderr)
# return 1
# return 0
try:
generateCamera(args.outputFile, args.path)
except Exception as e:
print(f"{e}", file=sys.stderr)
return 1
return 0

0 comments on commit f8e69f4

Please sign in to comment.