Skip to content

Instantly share code, notes, and snippets.

@deferraz
Last active December 11, 2015 13:59
Show Gist options
  • Select an option

  • Save deferraz/4611428 to your computer and use it in GitHub Desktop.

Select an option

Save deferraz/4611428 to your computer and use it in GitHub Desktop.
root@XXXX:/usr/lib/pymodules/python2.6/rq# diff /tmp/utils.py utils.py
11a12,13
> from compat import is_python_version
>
137c139,142
< super(ColorizingStreamHandler, self).__init__(*args, **kwargs)
---
> if is_python_version((2,6)):
> logging.StreamHandler.__init__(self, *args, **kwargs)
> else:
> super(ColorizingStreamHandler, self).__init__(*args, **kwargs)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment