Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 36b95ed

Browse files
committed
Merge pull request ipython#3384 from ugurthemaster/master
comments in tools/gitwash_dumper.py changed (''' to """)
2 parents bc29c16 + 34bab11 commit 36b95ed

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tools/gitwash_dumper.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python
2-
''' Checkout gitwash repo into directory and do search replace on name '''
2+
""" Checkout gitwash repo into directory and do search replace on name """
33

44
import os
55
from os.path import join as pjoin
@@ -51,9 +51,9 @@ def cp_files(in_path, globs, out_path):
5151

5252

5353
def filename_search_replace(sr_pairs, filename, backup=False):
54-
''' Search and replace for expressions in files
54+
""" Search and replace for expressions in files
5555
56-
'''
56+
"""
5757
in_txt = open(filename, 'rt').read(-1)
5858
out_txt = in_txt[:]
5959
for in_exp, out_exp in sr_pairs:

0 commit comments

Comments
 (0)