Having a module-global BINARY in this file makes it hard for subclasses to use custom binaries. All I want is a subclass that uses a different binary, not the one in settings.COMPRESS_YUI_BINARY.
The BINARY variable should be a class attribute instead of a module global, so that subclasses could easily change it.
Having a module-global
BINARYin this file makes it hard for subclasses to use custom binaries. All I want is a subclass that uses a different binary, not the one insettings.COMPRESS_YUI_BINARY.The
BINARYvariable should be a class attribute instead of a module global, so that subclasses could easily change it.