mirror of
https://github.com/sherlock-project/sherlock
synced 2024-11-21 19:33:02 +00:00
Fix version string
This commit is contained in:
parent
3b713ed008
commit
63a1c1448a
1 changed files with 3 additions and 3 deletions
|
@ -510,9 +510,9 @@ def handler(signal_received, frame):
|
|||
|
||||
def main():
|
||||
version_string = (
|
||||
f"%(prog)s {__version__}\n"
|
||||
+ f"{requests.__description__}: {requests.__version__}\n"
|
||||
+ f"Python: {platform.python_version()}"
|
||||
f"Sherlock {__version__}\n"
|
||||
+ f"Requests {requests.__version__}\n"
|
||||
+ f"Python {platform.python_version()}"
|
||||
)
|
||||
|
||||
parser = ArgumentParser(
|
||||
|
|
Loading…
Reference in a new issue