Add explanations to some lines
This commit is contained in:
		@@ -9,8 +9,8 @@ for file in argv[1:]:
 | 
				
			|||||||
           (
 | 
					           (
 | 
				
			||||||
               ''.join(ch for ch in file
 | 
					               ''.join(ch for ch in file
 | 
				
			||||||
                       if ch.isalnum()
 | 
					                       if ch.isalnum()
 | 
				
			||||||
                       or ch is ' '
 | 
					                       or ch is ' '     # whitespaces will be replaced
 | 
				
			||||||
                       or ch is '.'
 | 
					                       or ch is '.'     # dots are ok
 | 
				
			||||||
                       or ch is '_'     # do not ruin previous work
 | 
					                       or ch is '_'     # do not ruin previous work
 | 
				
			||||||
                       or ch is '-')    # dashes are ok
 | 
					                       or ch is '-')    # dashes are ok
 | 
				
			||||||
           )
 | 
					           )
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user