mirror of https://github.com/xzeldon/htop.git
make script version agnostic
This commit is contained in:
parent
09e241fb12
commit
60acda0bce
|
@ -2,8 +2,11 @@
|
|||
import os, sys, string
|
||||
try:
|
||||
from cStringIO import StringIO
|
||||
except:
|
||||
except ImportError:
|
||||
try:
|
||||
from StringIO import StringIO
|
||||
except ImportError:
|
||||
from io import StringIO
|
||||
|
||||
ANY=1
|
||||
COPY=2
|
||||
|
|
Loading…
Reference in New Issue