Skip to content

Commit

Permalink
- Exception conversion lost in the merge
Browse files Browse the repository at this point in the history
  • Loading branch information
dataflake committed Oct 13, 2019
1 parent 4bfa0fd commit 13b123b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Products/SiteAccess/VirtualHostMonster.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def set_map(self, map_text, RESPONSE=None):
if hostname not in host_map:
host_map[hostname] = {}
host_map[hostname][port] = pp
except Exception as msg:
except ValueError as msg:
line = '%s #! %s' % (line, msg)
new_lines.append(line)
self.lines = tuple(new_lines)
Expand Down

0 comments on commit 13b123b

Please sign in to comment.