Skip to content

Commit 8b6b4d5

Browse files
author
Vincent Michel
committed
Remove old PySequence naming
1 parent 3dfb1f8 commit 8b6b4d5

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

sequence/script/runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def main(filename=None):
2525
ui = RunnerWidget()
2626
if filename:
2727
ui.set_filename(filename)
28-
ui.setWindowTitle("PySequence Runner")
28+
ui.setWindowTitle("Sequence runner")
2929
ui.show()
3030
sys.exit(app.exec_())
3131

sequence/widget/editor/editor.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def handle(self, log_record):
5454
# EditorWidget Class Definition
5555
class EditorWidget(QtGui.QWidget):
5656
"""
57-
Main class of the PySequence Editor
57+
Main class of the sequence editor
5858
"""
5959

6060
print_signal = QtCore.pyqtSignal(unicode)
@@ -124,7 +124,7 @@ def dropEvent(self, event):
124124
self.ui.block_list.expandToDepth(0)
125125

126126
# Sequence initialization
127-
self.current_sequence = XMLSequence("New Sequence")
127+
self.current_sequence = XMLSequence("New sequence")
128128

129129
# Signals connection
130130
self.ui.open_button.clicked.connect(self.on_open)
@@ -152,7 +152,7 @@ def dropEvent(self, event):
152152
self.update()
153153

154154
# Logging
155-
self.log(u'PySequence Editor Initialized.')
155+
self.log(u'Sequence editor initialized.')
156156

157157

158158
self.signal_handler = SignalHandler(logging.DEBUG)
@@ -249,11 +249,11 @@ def on_new(self):
249249
# Create new sequence
250250
self.file_path = None
251251
self.set_changed(False)
252-
self.current_sequence = XMLSequence("New Sequence", depth=0,
252+
self.current_sequence = XMLSequence("New sequence", depth=0,
253253
level=0, execution=False)
254254
# Update
255255
self.update()
256-
self.log('NEW : New Sequence')
256+
self.log('NEW : New sequence')
257257

258258
def on_open(self):
259259
"""
@@ -492,7 +492,7 @@ def set_changed(self, value, global_change=False):
492492
name = os.path.basename(self.file_path)
493493
else:
494494
name = self.current_sequence.sequence_id
495-
title = 'PySequence Editor - '
495+
title = 'Sequence editor - '
496496
# Set the title format
497497
if self.changed:
498498
title += '*' + name + '*'

sequence/widget/runner/runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ def custom_resize(self):
160160

161161
def open_editor(self, boolean, filename=""):
162162
"""
163-
Open the PySequence Editor in a subprocess
163+
Open the editor in a subprocess
164164
The given filename is used to open a sequence
165165
"""
166166
cmd = u'python -m sequence.editor '

0 commit comments

Comments
 (0)