コード例 #1
0
ファイル: application.py プロジェクト: havok2063/glue
 def _send_report(self):
     """
     Send the contents of the log as a bug report
     """
     text = self._text.document().toPlainText()
     if submit_bug_report(text):
         self._clear()
コード例 #2
0
ファイル: application.py プロジェクト: rguter/glue
 def _send_report(self):
     """
     Send the contents of the log as a bug report
     """
     text = self._text.document().toPlainText()
     if submit_bug_report(text):
         self._clear()
コード例 #3
0
 def _send_report(self, *args):
     """
     Send the contents of the log as a bug report
     """
     text = self._text.document().toPlainText()
     submit_bug_report(text)
コード例 #4
0
ファイル: application.py プロジェクト: glue-viz/glue
 def _send_report(self, *args):
     """
     Send the contents of the log as a bug report
     """
     text = self._text.document().toPlainText()
     submit_bug_report(text)