Browse Source

Deleted debug print in lodel.context

Yann Weber 7 years ago
parent
commit
a03f6f58ec
1 changed files with 0 additions and 2 deletions
  1. 0
    2
      lodel/context.py

+ 0
- 2
lodel/context.py View File

519
         if reimport or fullname not in cls.__imports_cache[ctx_id]:
519
         if reimport or fullname not in cls.__imports_cache[ctx_id]:
520
             cls.__imports_cache[ctx_id][fullname] = importlib.import_module(
520
             cls.__imports_cache[ctx_id][fullname] = importlib.import_module(
521
                 fullname)
521
                 fullname)
522
-        elif not reimport:
523
-            print("NOT REIMPORTING %s" % fullname)
524
         return cls.__imports_cache[ctx_id][fullname]
522
         return cls.__imports_cache[ctx_id][fullname]
525
     
523
     
526
     ##@brief Utility mehod to expose objects like in a from x import y,z
524
     ##@brief Utility mehod to expose objects like in a from x import y,z

Loading…
Cancel
Save