only import OrderedDict from collections in confit

This was only necessary in <=2.6
This commit is contained in:
Johnny Robeson 2016-06-18 03:16:33 -04:00
parent bc88dae726
commit da5fb85557

View file

@ -24,10 +24,7 @@ import sys
import yaml
import collections
import re
try:
from collections import OrderedDict
except ImportError:
from ordereddict import OrderedDict
from collections import OrderedDict
UNIX_DIR_VAR = 'XDG_CONFIG_HOME'
UNIX_DIR_FALLBACK = '~/.config'