Skip to content

Commit e8e7fa9

Browse files
committed
main: fix type of 'port' argument
1 parent 9d97cd2 commit e8e7fa9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

blitzloop/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def csv_list(s):
3232
'--songdir', default=os.path.expanduser(songs_dir),
3333
help='directory with songs')
3434
parser.add_argument('--host', default='0.0.0.0', help='IP to listen on')
35-
parser.add_argument('--port', default=10111, help='port for the UI')
35+
parser.add_argument('--port', default=10111, type=int, help='port for the UI')
3636
parser.add_argument(
3737
'--width', type=int, default=1024,
3838
help='width of blitzloop window (ignored in fs)')

0 commit comments

Comments
 (0)