Remove another snippet of pre-3.4 compatibility

This commit is contained in:
mathieui 2015-01-21 14:19:02 +01:00
parent 992a460cf6
commit eb6309da75
No known key found for this signature in database
GPG key ID: C59F84CEEFD616E3

View file

@ -25,11 +25,7 @@ import subprocess
import shlex
import logging
try:
from subprocess import DEVNULL # Only in python >= 3.3
except ImportError:
import os
DEVNULL = open(os.devnull, 'wb')
from subprocess import DEVNULL
log = logging.getLogger(__name__)