ldgen: rename common module

This commit is contained in:
Renz Christian Bagaporo 2019-04-13 08:59:32 +08:00 committed by Jack
parent f7177095cf
commit 1b3c6fb1a1
4 changed files with 3 additions and 3 deletions

View file

@ -30,7 +30,7 @@ from pyparsing import Literal
from pyparsing import ZeroOrMore
from pyparsing import Optional
from pyparsing import originalTextFor
from common import LdGenFailure
from ldgen_common import LdGenFailure
class FragmentFileModel():

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 FragmentFileModel
from sdkconfig import SDKConfig
from generation import GenerationModel, TemplateModel, SectionsInfo
from common import LdGenFailure
from ldgen_common import LdGenFailure
def main():