Skip to content

Commit

Permalink
Merge pull request #69 from Spec-Ops/manifest_sourcefile_fix
Browse files Browse the repository at this point in the history
Fixed library search paths
  • Loading branch information
halindrome authored and jgraham committed May 9, 2016
1 parent eff67d5 commit 7eaf1d3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions manifest/sourcefile.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import imp
import os
from six.moves.urllib.parse import urljoin
from fnmatch import fnmatch
Expand All @@ -6,6 +7,9 @@
except ImportError:
from xml.etree import ElementTree

here = os.path.dirname(__file__)
localpaths = imp.load_source("localpaths", os.path.abspath(os.path.join(here, os.pardir, "localpaths.py")))

import html5lib

from . import vcs
Expand Down

0 comments on commit 7eaf1d3

Please sign in to comment.