Skip to content

Commit ed4ad65

Browse files
committed
Accomodate legacy client version checks
1 parent cda65e3 commit ed4ad65

File tree

3 files changed

+6
-16
lines changed

3 files changed

+6
-16
lines changed

sherlock/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# This file used to trigger updates on packages too out of date
2+
# to use the new release tag format. Remove in next update.
3+
__version__ = "0.15.0"

sherlock/sherlock.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# This file used to trigger updates on packages too out of date
2+
# to use the new release tag format. Remove in next update.
3+
__version__ = "0.15.0"

sherlock_project/sherlock.py

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -593,22 +593,6 @@ def main():
593593
dest="output",
594594
help="If using single username, the output of the result will be saved to this file.",
595595
)
596-
parser.add_argument(
597-
"--tor",
598-
"-t",
599-
action="store_true",
600-
dest="tor",
601-
default=False,
602-
help="Make requests over Tor; increases runtime; requires Tor to be installed and in system path.",
603-
)
604-
parser.add_argument(
605-
"--unique-tor",
606-
"-u",
607-
action="store_true",
608-
dest="unique_tor",
609-
default=False,
610-
help="Make requests over Tor with new Tor circuit after each request; increases runtime; requires Tor to be installed and in system path.",
611-
)
612596
parser.add_argument(
613597
"--csv",
614598
action="store_true",

0 commit comments

Comments
 (0)