mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-01 08:53:37 +00:00
Fixed ImportError: cannot import name OrderedDict
This commit is contained in:
parent
6c3f34fd8d
commit
7d2f7c8233
1 changed files with 1 additions and 4 deletions
|
@ -15,10 +15,8 @@
|
|||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with SickRage. If not, see <http://www.gnu.org/licenses/>.
|
||||
from collections import OrderedDict
|
||||
|
||||
import re
|
||||
import time
|
||||
import datetime
|
||||
import os.path
|
||||
import threading
|
||||
|
@ -27,7 +25,6 @@ import sickbeard
|
|||
|
||||
from sickbeard import logger, helpers, scene_numbering, common
|
||||
from dateutil import parser
|
||||
from sickbeard.common import cpu_presets
|
||||
|
||||
nameparser_lock = threading.Lock()
|
||||
|
||||
|
@ -140,7 +137,7 @@ class NameParser(object):
|
|||
elif self.showObj and not self.showObj.is_anime and not self.showObj.is_sports:
|
||||
regexMode = self.NORMAL_REGEX
|
||||
|
||||
self.compiled_regexes = OrderedDict()
|
||||
self.compiled_regexes = {}
|
||||
self._compile_regexes(regexMode)
|
||||
|
||||
matches = []
|
||||
|
|
Loading…
Reference in a new issue