|
@@ -276,6 +276,7 @@ class RldMan():
|
276
|
276
|
# scope_key = rfile_obj.get("scope")
|
277
|
277
|
p(scope_key,rfile_obj)
|
278
|
278
|
f.close()
|
|
279
|
+ eflag ="nd"
|
279
|
280
|
scope_obj = self.get_scope(file_name,rfile_obj)
|
280
|
281
|
if self.scope_opt == "locals":
|
281
|
282
|
exec(ftxt,scope_obj["globals"],scope_obj["locals"])
|
|
@@ -285,7 +286,7 @@ class RldMan():
|
285
|
286
|
exec(ftxt)
|
286
|
287
|
|
287
|
288
|
except Exception as e:
|
288
|
|
- print("EXCEPT",eflag,e)
|
|
289
|
+ print("EXCEPT",,e)
|
289
|
290
|
if self.print_tb:
|
290
|
291
|
traceback.print_tb(e.__traceback__,file=sys.stdout)
|
291
|
292
|
else:
|