 Issue 29670676:
  Issue 5844 - Remove redundant parentheses in buildtools  (Closed) 
  Base URL: https://hg.adblockplus.org/buildtools/
    
  
    Issue 29670676:
  Issue 5844 - Remove redundant parentheses in buildtools  (Closed) 
  Base URL: https://hg.adblockplus.org/buildtools/| Index: packagerChrome.py | 
| =================================================================== | 
| --- a/packagerChrome.py | 
| +++ b/packagerChrome.py | 
| @@ -54,7 +54,7 @@ | 
| magic = None | 
| if magic != '\x89PNG\r\n\x1a\n': | 
| raise Exception(filename + ' is no valid PNG.') | 
| - if(width != height): | 
| + if width != height: | 
| print >>sys.stderr, 'Warning: %s size is %ix%i, icon should be square' % (filename, width, height) | 
| icons[width] = filename | 
| return icons |