mirror of
https://github.com/python/cpython.git
synced 2025-08-31 14:07:50 +00:00
Fix Mac build, patch #1091 by Humberto Diogenes.
This commit is contained in:
parent
e4ac7504c9
commit
c76473d887
8 changed files with 18 additions and 16 deletions
|
@ -12,7 +12,8 @@ import getopt
|
|||
class NoArgsError(Exception):
|
||||
pass
|
||||
|
||||
def handler((verbose, force), dirname, fnames):
|
||||
def handler(arg1, dirname, fnames):
|
||||
verbose, force = arg1
|
||||
for fn in fnames:
|
||||
if fn[-5:] == '.rsrc' and fn[-13:] != '.rsrc.df.rsrc':
|
||||
if force:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue