mirror of https://github.com/xzeldon/htop.git
Merge pull request #659 from guoci/patch-1
make script version agnostic
This commit is contained in:
commit
4300a19592
|
@ -2,8 +2,11 @@
|
|||
import os, sys, string
|
||||
try:
|
||||
from cStringIO import StringIO
|
||||
except:
|
||||
from StringIO import StringIO
|
||||
except ImportError:
|
||||
try:
|
||||
from StringIO import StringIO
|
||||
except ImportError:
|
||||
from io import StringIO
|
||||
|
||||
ANY=1
|
||||
COPY=2
|
||||
|
|
Loading…
Reference in New Issue