diff rhodecode/lib/subprocessio.py @ 2729:e9e7c40b4f1a beta

added deque with maxlen for py2.5 compat
author Marcin Kuzminski <marcin@python-works.com>
date Wed, 22 Aug 2012 12:09:49 +0200
parents 1f4d4b8d72f5
children 7949bc80b3b1
line wrap: on
line diff
--- a/rhodecode/lib/subprocessio.py	Wed Aug 22 02:14:27 2012 +0200
+++ b/rhodecode/lib/subprocessio.py	Wed Aug 22 12:09:49 2012 +0200
@@ -25,7 +25,7 @@
 import os
 import subprocess
 import threading
-from collections import deque
+from rhodecode.lib.compat import deque
 
 
 class StreamFeeder(threading.Thread):