Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion whyslow/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from subprocess import call
from .utils import show_results, get_profile_file_path

if len(sys.argv) != 2:
if len(sys.argv) < 2:
raise AssertionError('No file name provided to be executed')

profile_file = get_profile_file_path()
Expand Down