Browse Source

ldgen: rename common module

Renz Christian Bagaporo 6 years ago
parent
commit
7150ac61cd
3 changed files with 2 additions and 2 deletions
  1. 1 1
      tools/ldgen/generation.py
  2. 1 1
      tools/ldgen/ldgen.py
  3. 0 0
      tools/ldgen/ldgen_common.py

+ 1 - 1
tools/ldgen/generation.py

@@ -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():

+ 1 - 1
tools/ldgen/ldgen.py

@@ -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
 
 

+ 0 - 0
tools/ldgen/common.py → tools/ldgen/ldgen_common.py