[update] rename QtPylot -> PyLoT (suggestion)

This commit is contained in:
Marcel Paffrath 2017-09-21 15:36:17 +02:00
parent af5953b053
commit 255eca3c05
3 changed files with 7 additions and 7 deletions

10
QtPyLoT.py → PyLoT.py Executable file → Normal file
View File

@ -49,7 +49,7 @@ from obspy.core.util import AttribDict
try:
import pyqtgraph as pg
except Exception as e:
print('QtPyLoT: Could not import pyqtgraph. {}'.format(e))
print('PyLoT: Could not import pyqtgraph. {}'.format(e))
pg = None
try:
@ -964,7 +964,7 @@ class MainWindow(QMainWindow):
def get_current_event(self, eventbox=None):
'''
Return event (type QtPylot.Event) currently selected in eventbox.
Return event (type PyLoT.Event) currently selected in eventbox.
'''
if not eventbox:
eventbox = self.eventBox
@ -973,7 +973,7 @@ class MainWindow(QMainWindow):
def get_current_event_path(self, eventbox=None):
'''
Return event path of event (type QtPylot.Event) currently selected in eventbox.
Return event path of event (type PyLoT.Event) currently selected in eventbox.
'''
event = self.get_current_event(eventbox)
if event:
@ -981,7 +981,7 @@ class MainWindow(QMainWindow):
def get_current_event_name(self, eventbox=None):
'''
Return event path of event (type QtPylot.Event) currently selected in eventbox.
Return event path of event (type PyLoT.Event) currently selected in eventbox.
'''
path = self.get_current_event_path(eventbox)
if path:
@ -3034,7 +3034,7 @@ class MainWindow(QMainWindow):
class Project(object):
'''
Pickable class containing information of a QtPyLoT project, like event lists and file locations.
Pickable class containing information of a PyLoT project, like event lists and file locations.
'''
def __init__(self):

View File

@ -22,7 +22,7 @@ from PySide import QtCore, QtGui
try:
import pyqtgraph as pg
except Exception as e:
print('QtPyLoT: Could not import pyqtgraph. {}'.format(e))
print('PyLoT: Could not import pyqtgraph. {}'.format(e))
pg = None
def _pickle_method(m):

View File

@ -2472,7 +2472,7 @@ class TuneAutopicker(QWidget):
QWidget used to modifiy and test picking parameters for autopicking algorithm.
:param: parent
:type: QtPyLoT Mainwindow
:type: PyLoT Mainwindow
'''
def __init__(self, parent):