Merge branch 'bugfix/rename_ldgen_common_module' into 'master'

ldgen: rename common module

See merge request idf/esp-idf!4758
This commit is contained in:
Jiang Jiang Jian 2019-04-14 11:20:22 +08:00
commit a9efefdc73
3 changed files with 2 additions and 2 deletions

View file

@ -22,7 +22,7 @@ import fnmatch
from fragments import Sections, Scheme, Mapping, Fragment
from pyparsing import Suppress, White, ParseException, Literal, Group, ZeroOrMore
from pyparsing import Word, OneOrMore, nums, alphanums, alphas, Optional, LineEnd, printables
from common import LdGenFailure
from ldgen_common import LdGenFailure
class PlacementRule():

View file

@ -22,7 +22,7 @@ import tempfile
from fragments import FragmentFile
from sdkconfig import SDKConfig
from generation import GenerationModel, TemplateModel, SectionsInfo
from common import LdGenFailure
from ldgen_common import LdGenFailure
from pyparsing import ParseException, ParseFatalException