Skip to content

Commit

Permalink
Escape \'s in doc strings
Browse files Browse the repository at this point in the history
  • Loading branch information
dashea committed Jul 29, 2015
1 parent c249ab2 commit c2bc617
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyanaconda/flags.py
Expand Up @@ -122,7 +122,7 @@ def read(self, filenames):
Read and parse a filename (or a list of filenames).
Files that can't be read are silently ignored.
Returns a list of successfully read files.
filenames can contain \*, ?, and character ranges expressed with []
filenames can contain \\*, ?, and character ranges expressed with []
"""

readfiles = []
Expand Down
2 changes: 1 addition & 1 deletion pyanaconda/kickstart.py
Expand Up @@ -88,7 +88,7 @@ class AnacondaKSScript(KSScript):
This will write the script to a file named /tmp/ks-script- before
execution.
Output is logged by the program logger, the path specified by --log
or to /tmp/ks-script-\*.log
or to /tmp/ks-script-\\*.log
"""
def run(self, chroot):
""" Run the kickstart script
Expand Down
2 changes: 1 addition & 1 deletion pyanaconda/ui/gui/utils.py
Expand Up @@ -151,7 +151,7 @@ def gtk_batch_map(action, items, args=(), pre_func=None, batch_size=1):
:param action: any action that has to be done on the items in the main
thread
:type action: (action_item, \*args) -> None
:type action: (action_item, \\*args) -> None
:param items: an iterable of items that the action should be mapped on
:type items: iterable
:param args: additional arguments passed to the action function
Expand Down

0 comments on commit c2bc617

Please sign in to comment.