minor cleanup
svn: r23013
This commit is contained in:
parent
8c331a5d92
commit
1206e00076
@ -385,9 +385,8 @@ def poll_external ((proc, errorstrings)):
|
|||||||
|
|
||||||
@proc the process, returned from subprocess.Popen()
|
@proc the process, returned from subprocess.Popen()
|
||||||
@errorstrings a dict of possible response values and the corresponding messages to display.
|
@errorstrings a dict of possible response values and the corresponding messages to display.
|
||||||
@returns False when the function has completed.
|
@returns bool returned to timeout_add_seconds: should this function be called again?
|
||||||
"""
|
"""
|
||||||
from QuestionDialog import ErrorDialog
|
|
||||||
resp = proc.poll()
|
resp = proc.poll()
|
||||||
if resp is None:
|
if resp is None:
|
||||||
return True
|
return True
|
||||||
@ -403,7 +402,7 @@ def open_file_with_default_application(uri):
|
|||||||
type of file.
|
type of file.
|
||||||
|
|
||||||
@param file_path: The path to the file to be opened.
|
@param file_path: The path to the file to be opened.
|
||||||
Example: "c:\foo.txt"
|
Example: "c:\\foo.txt"
|
||||||
@type file_path: string
|
@type file_path: string
|
||||||
@return: nothing
|
@return: nothing
|
||||||
"""
|
"""
|
||||||
|
Loading…
Reference in New Issue
Block a user