We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 43e543a + 3f1f253 commit 1c2e99aCopy full SHA for 1c2e99a
tests/sherlock_interactives.py
@@ -7,8 +7,8 @@ class Interactives:
7
def run_cli(args:str = "") -> str:
8
"""Pass arguments to Sherlock as a normal user on the command line"""
9
# Adapt for platform differences (Windows likes to be special)
10
- if platform.system == "Windows":
11
- command:str = f"py -m sherlock {args}"
+ if platform.system() == "Windows":
+ command:str = f"py -m sherlock_project {args}"
12
else:
13
command:str = f"sherlock {args}"
14
0 commit comments