Skip to content

Commit

Permalink
Formatted error message box
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaspatzke committed Jun 29, 2016
1 parent d74add7 commit 97d22e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ElasticBurp.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def applyConfig(self):
except:
pass
except Exception as e:
JOptionPane.showMessageDialog(self.panel, "Error while initializing ElasticSearch: %s" % (str(e)), "Error", JOptionPane.ERROR_MESSAGE)
JOptionPane.showMessageDialog(self.panel, "<html><p style='width: 300px'>Error while initializing ElasticSearch: %s</p></html>" % (str(e)), "Error", JOptionPane.ERROR_MESSAGE)

### ITab ###
def getTabCaption(self):
Expand Down

0 comments on commit 97d22e6

Please sign in to comment.