Skip to content

Commit

Permalink
refactor: fix variable name in DAQJobServeHTTP do_GET method
Browse files Browse the repository at this point in the history
  • Loading branch information
furkan-bilgin committed Oct 13, 2024
1 parent 4afd16d commit 3f0062d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/daq/serve_http.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def __init__(self, *args, **kwargs):

def do_GET(self) -> None:
self.path = self.path.replace(
"$TODAY", datetime.now().strftime("%Y-%m-%d")
"TODAY", datetime.now().strftime("%Y-%m-%d")
)
return super().do_GET()

Expand Down

0 comments on commit 3f0062d

Please sign in to comment.