mirror of
https://github.com/kevinveenbirkenbach/bulk-string-replacer.git
synced 2024-11-22 11:01:03 +01:00
show replace content just if to replace content exist
This commit is contained in:
parent
71f5db9f74
commit
df49d43c50
@ -5,6 +5,7 @@ def replace_content(path, old_string, new_string, preview, verbose):
|
||||
with open(path, 'r', encoding='utf-8') as f:
|
||||
content = f.read()
|
||||
|
||||
if old_string in content: # Prüfen, ob der alte String im Inhalt vorkommt
|
||||
new_content = content.replace(old_string, new_string)
|
||||
|
||||
if verbose:
|
||||
|
Loading…
Reference in New Issue
Block a user