mirror of
https://github.com/rwinkhart/sshyp.git
synced 2026-09-05 08:37:14 -04:00
port-jobs: COMMENTS.py now acts on all Python files in the lib directory
Former-commit-id: 7cae54dec389cc649f2165cb723353ad72292992 Former-commit-id: 2ab248feeeed74b5b2ffab0d5cf8ee79955cc585
This commit is contained in:
@@ -36,15 +36,15 @@ else:
|
||||
s_exit()
|
||||
|
||||
# define PORT target
|
||||
string1 = "# PORT START CLIPBOARD"
|
||||
string2 = "# PORT END CLIPBOARD"
|
||||
string1 = '# PORT START CLIPBOARD'
|
||||
string2 = '# PORT END CLIPBOARD'
|
||||
|
||||
# read input file
|
||||
text = open("working/sshyp.py", "r").read()
|
||||
text = open('working/sshyp.py', 'r').read()
|
||||
|
||||
# find and replace the defined PORT target
|
||||
regex = re.compile(f"{string1}.*?{string2}", re.DOTALL)
|
||||
new_text = re.sub(regex, replacement, text)
|
||||
|
||||
# write the updated text
|
||||
open("working/sshyp.py", "w").write(new_text)
|
||||
# write updated text
|
||||
open('working/sshyp.py', 'w').write(new_text)
|
||||
|
||||
Reference in New Issue
Block a user