diff --git a/BeeFOverWan.py b/BeeFOverWan.py index 34e60af..cc0ff7d 100644 --- a/BeeFOverWan.py +++ b/BeeFOverWan.py @@ -87,7 +87,7 @@ def string_replace(filename, old_string, new_string): with open(filename) as f: s = f.read() if old_string not in s: - print '"{old_string}" not found in {filename}.'.format(**locals()) + print ('"{old_string}" not found in {filename}.').format(**locals()) return # Safely write the changed content, if found in the file