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 saleae_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def validate_path( path, argument_name ):
parser.add_argument('--export-data', metavar='PATH', help='if specified, exports the raw capture to the sepcified directory')
parser.add_argument('--export-analyzers', metavar='PATH', help='if specified, exports each analyzer to the specified directory')
parser.add_argument('--ip', metavar='IP', default='localhost', help='optional, IP address to connect to. Default localhost')
parser.add_argument('--port', metavar='PORT', default=10429, help='optional, Port to connect to. Default 10429')
parser.add_argument('--port', metavar='PORT', default=10429, type=int, help='optional, Port to connect to. Default 10429')
parser.add_argument('--exit', action='store_true', help='optional, use to close the Logic software once complete')

args = parser.parse_args()
Expand Down