532 |
532 |
533 @return tuple containing a flag indicating it is safe to start a |
533 @return tuple containing a flag indicating it is safe to start a |
534 Plotter and a reason why it cannot. |
534 Plotter and a reason why it cannot. |
535 @rtype tuple of (bool, str) |
535 @rtype tuple of (bool, str) |
536 """ |
536 """ |
537 return False, self.tr("Running scripts is not supported by this" " device.") |
537 return False, self.tr("Running scripts is not supported by this device.") |
538 |
538 |
539 def runScript(self, script): |
539 def runScript(self, script): |
540 """ |
540 """ |
541 Public method to run the given Python script. |
541 Public method to run the given Python script. |
542 |
542 |