Fixes problem with parser module on windows (#4)

This commit is contained in:
simon987
2018-04-14 12:58:04 -04:00
parent 3596829b06
commit a13f5a082a
7 changed files with 39 additions and 39 deletions

View File

@@ -1,6 +1,6 @@
from unittest import TestCase
from parser import ApacheParser, NginxParser
from parsing import ApacheParser, NginxParser
from crawler import Crawler

View File

@@ -1,4 +1,4 @@
from parser import NginxParser, PageParser, ApacheParser
from parsing import NginxParser, PageParser, ApacheParser
from unittest import TestCase