Matplotlib - Export and Publication Quality
Identify the error in this code that attempts to save a plot as SVG:
import matplotlib.pyplot as plt
plt.plot([1, 2, 3])
plt.savefig('graph.svg', format='png')