Skip to content

Commit

Permalink
Small improvement in query output
Browse files Browse the repository at this point in the history
  • Loading branch information
zwimer committed Oct 9, 2024
1 parent b2ab69e commit f7609d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rpipe/client/client/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def _query(conf: PartialConfig) -> None:
case QueryEC.illegal_version:
raise VersionError(f"Server requires version >= {r.text}")
case QueryEC.no_data:
print("No data on this channel")
print(f"No data on channel: {conf.channel.value}")
return
if not r.ok:
raise RuntimeError(f"Query failed. Error {r.status_code}: {r.text}")
Expand Down
2 changes: 1 addition & 1 deletion rpipe/shared/version_.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from __future__ import annotations


__version__: str = "8.7.0" # Must be "<major>.<minor>.<patch>", all numbers
__version__: str = "8.7.1" # Must be "<major>.<minor>.<patch>", all numbers


class Version:
Expand Down

0 comments on commit f7609d6

Please sign in to comment.