Skip to content

Commit

Permalink
Remove a debug traceback stack print on obj config syntax errors
Browse files Browse the repository at this point in the history
  • Loading branch information
cvaroqui committed Jan 27, 2021
1 parent e687dd7 commit c2c40b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions opensvc/core/extconfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -1548,8 +1548,8 @@ def parse_config_file(self, cf=None):
try:
config = read_cf(cf)
except Exception as exc:
import traceback
traceback.print_stack()
#import traceback
#traceback.print_stack()
raise ex.Error("error parsing %s: %s" % (cf, exc))
try:
from collections import OrderedDict
Expand Down

0 comments on commit c2c40b2

Please sign in to comment.