Skip to content
Snippets Groups Projects
Commit eeba5715 authored by Paul McCarthy's avatar Paul McCarthy
Browse files

Doc updates

parent 2eeb30ad
No related branches found
No related tags found
No related merge requests found
...@@ -7,21 +7,12 @@ fsl.utils package ...@@ -7,21 +7,12 @@ fsl.utils package
fsl.utils.async fsl.utils.async
fsl.utils.cache fsl.utils.cache
fsl.utils.callfsl fsl.utils.callfsl
fsl.utils.colourbarbitmap
fsl.utils.dialog
fsl.utils.imagepanel
fsl.utils.layout
fsl.utils.memoize fsl.utils.memoize
fsl.utils.notifier fsl.utils.notifier
fsl.utils.path fsl.utils.path
fsl.utils.platform fsl.utils.platform
fsl.utils.runwindow
fsl.utils.settings fsl.utils.settings
fsl.utils.status
fsl.utils.textbitmap
fsl.utils.transform fsl.utils.transform
fsl.utils.typedict
fsl.utils.webpage
fsl.utils.weakfuncref fsl.utils.weakfuncref
.. automodule:: fsl.utils .. automodule:: fsl.utils
......
...@@ -203,7 +203,7 @@ class Settings(object): ...@@ -203,7 +203,7 @@ class Settings(object):
with settings.writeFile('mydata.txt') as f: with settings.writeFile('mydata.txt') as f:
f.write('data\n') f.write('data\\n')
An alternate method of writing to a file is via :meth:`filePath`, An alternate method of writing to a file is via :meth:`filePath`,
...@@ -212,7 +212,7 @@ class Settings(object): ...@@ -212,7 +212,7 @@ class Settings(object):
fname = settings.filePath('mydata.txt') fname = settings.filePath('mydata.txt')
with open(fname, 'wt') as f: with open(fname, 'wt') as f:
f.write('data\n') f.write('data\\n')
However using ``writeFile`` has the advantage that any intermediate However using ``writeFile`` has the advantage that any intermediate
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment