File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4747
4848""" This is a regex that detects files that SHOULD NOT have line endings
4949converted to CRLF when being put into a ZIP file """
50- bin_regex = re .compile ("\.(mak|mdp|ide|exe|ico|gz|zip|xls|sxd|gif|vcp|vcproj|vcw|sln|dfm|jpg|png|vsd|bz2|pdf|ppt|graffle|pptx|odt|sh)$" )
50+ bin_regex = re .compile (r "\.(mak|mdp|ide|exe|ico|gz|zip|xls|sxd|gif|vcp|vcproj|vcw|sln|dfm|jpg|png|vsd|bz2|pdf|ppt|graffle|pptx|odt|sh)$" )
5151version_restr = r'(\d+)(?:\.(\d+)(?:\.(\d+))?)?'
5252version_re = re .compile (version_restr )
5353
@@ -310,7 +310,7 @@ def update_debianbuild ():
310310
311311 path = get_path ('ACE' , 'debian' , 'control' )
312312
313- mask = re .compile ("(libace|libACE|libkokyu|libKokyu|libnetsvcs)([^\s,:]*-)(\d+\.\d+\.\d+)([^\s,:]*)" )
313+ mask = re .compile (r "(libace|libACE|libkokyu|libKokyu|libnetsvcs)([^\s,:]*-)(\d+\.\d+\.\d+)([^\s,:]*)" )
314314
315315 def update_ver (match ):
316316 return match .group (1 ) + match .group (2 ) + comp_versions ["ACE_version" ] + match .group (4 )
You can’t perform that action at this time.
0 commit comments