Source code for ipypublish.filters.replace_string

#!/usr/bin/env python
[docs]def replace_string(line, find, replace): return line.replace(find, replace)