Fix old global_mod imports

parent 072eee1a
......@@ -31,7 +31,7 @@ from hdlmake.vlog_parser import VerilogPreprocessor
from .action import Action
import global_mod
from . import global_mod
class MergeCores(Action):
......
......@@ -26,7 +26,7 @@ from tempfile import TemporaryFile
from subprocess import Popen, PIPE
from .constants import (GIT, GITSUBMODULE)
from .fetcher import Fetcher
import global_mod
from . import global_mod
class GitSubmodule(Fetcher):
......
......@@ -25,7 +25,7 @@ from tempfile import TemporaryFile
from subprocess import Popen, PIPE
from hdlmake.util import path
from .fetcher import Fetcher
import global_mod
from . import global_mod
class Svn(Fetcher):
......
......@@ -23,7 +23,7 @@
from __future__ import print_function
import os
import logging
import global_mod
from . import global_mod
def url_parse(url):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment