summaryrefslogtreecommitdiff
path: root/tools/scan-view/share/startfile.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/scan-view/share/startfile.py')
-rw-r--r--tools/scan-view/share/startfile.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/scan-view/share/startfile.py b/tools/scan-view/share/startfile.py
index 673935909f823..f58dbeeaf8179 100644
--- a/tools/scan-view/share/startfile.py
+++ b/tools/scan-view/share/startfile.py
@@ -62,7 +62,7 @@ class Controller(BaseController):
preexec_fn=setsid, startupinfo=startupinfo)
# It is assumed that this kind of tools (gnome-open, kfmclient,
- # exo-open, xdg-open and open for OSX) immediately exit after lauching
+ # exo-open, xdg-open and open for OSX) immediately exit after launching
# the specific application
returncode = pipe.wait()
if hasattr(self, 'fixreturncode'):
@@ -85,7 +85,7 @@ class Controller(BaseController):
if sys.platform[:3] == 'win':
class Start(BaseController):
- '''Controller for the win32 start progam through os.startfile.'''
+ '''Controller for the win32 start program through os.startfile.'''
def open(self, filename):
try:
@@ -201,6 +201,6 @@ else:
def open(filename):
- '''Open a file or an URL in the registered default application.'''
+ '''Open a file or a URL in the registered default application.'''
return _open(filename)