@@ -84,31 +84,31 @@ def main():
8484 description = """Prints basic information from Starcraft II replay and
8585 game summary files or directories.""" )
8686 parser .add_argument ('--recursive' , action = "store_true" , default = True ,
87- help = "Recursively read through directories of Starcraft II files [default on]" )
87+ help = "Recursively read through directories of Starcraft II files [default on]" )
8888
8989 required = parser .add_argument_group ('Required Arguments' )
9090 required .add_argument ('paths' , metavar = 'filename' , type = str , nargs = '+' ,
91- help = "Paths to one or more Starcraft II files or directories" )
91+ help = "Paths to one or more Starcraft II files or directories" )
9292
9393 shared_args = parser .add_argument_group ('Shared Arguments' )
9494 shared_args .add_argument ('--date' , action = "store_true" , default = True ,
95- help = "print(game date [default on]" )
95+ help = "print(game date [default on]" )
9696 shared_args .add_argument ('--length' , action = "store_true" , default = False ,
97- help = "print(game duration mm:ss in game time (not real time) [default off]" )
97+ help = "print(game duration mm:ss in game time (not real time) [default off]" )
9898 shared_args .add_argument ('--map' , action = "store_true" , default = True ,
99- help = "print(map name [default on]" )
99+ help = "print(map name [default on]" )
100100 shared_args .add_argument ('--teams' , action = "store_true" , default = True ,
101- help = "print(teams, their players, and the race matchup [default on]" )
101+ help = "print(teams, their players, and the race matchup [default on]" )
102102
103103 replay_args = parser .add_argument_group ('Replay Options' )
104104 replay_args .add_argument ('--messages' , action = "store_true" , default = False ,
105- help = "print(in-game player chat messages [default off]" )
105+ help = "print(in-game player chat messages [default off]" )
106106 replay_args .add_argument ('--version' , action = "store_true" , default = True ,
107- help = "print(the release string as seen in game [default on]" )
107+ help = "print(the release string as seen in game [default on]" )
108108
109109 s2gs_args = parser .add_argument_group ('Game Summary Options' )
110110 s2gs_args .add_argument ('--builds' , action = "store_true" , default = False ,
111- help = "print(player build orders (first 64 items) [default off]" )
111+ help = "print(player build orders (first 64 items) [default off]" )
112112
113113 arguments = parser .parse_args ()
114114 for path in arguments .paths :
0 commit comments