CMSIS-DSP: Correcting URL in PythonWrapper documentation.
diff --git a/CMSIS/DSP/PythonWrapper/README.md b/CMSIS/DSP/PythonWrapper/README.md
index 2679171..34beb82 100644
--- a/CMSIS/DSP/PythonWrapper/README.md
+++ b/CMSIS/DSP/PythonWrapper/README.md
@@ -193,7 +193,7 @@
 
 This example depends on a data file which can be downloaded here:
 
-https://www.physionet.org/pn3/ecgiddb/Person_87/rec_2.dat
+https://archive.physionet.org/pn3/ecgiddb/Person_87/rec_2.dat
 
 This signal was created for a master thesis:
 
@@ -203,6 +203,8 @@
 
 Goldberger AL, Amaral LAN, Glass L, Hausdorff JM, Ivanov PCh, Mark RG, Mietus JE, Moody GB, Peng C-K, Stanley HE. PhysioBank, PhysioToolkit, and PhysioNet: Components of a New Research Resource for Complex Physiologic Signals. Circulation 101(23):e215-e220 [Circulation Electronic Pages; http://circ.ahajournals.org/cgi/content/full/101/23/e215]; 2000 (June 13). 
 
+Note that the example file
+
 
 # LIMITATIONS
 
diff --git a/CMSIS/DSP/PythonWrapper/example.py b/CMSIS/DSP/PythonWrapper/example.py
index caa6db4..aff3d6e 100644
--- a/CMSIS/DSP/PythonWrapper/example.py
+++ b/CMSIS/DSP/PythonWrapper/example.py
@@ -2,7 +2,7 @@
 import numpy as np
 from scipy import signal
 from pylab import figure, clf, plot, xlabel, ylabel, xlim, ylim, title, grid, axes, show,semilogx, semilogy
-# Data file from https://physionet.org/content/ecgiddb/1.0.0/Person_87/rec_2.dat
+# Data file from https://archive.physionet.org/pn3/ecgiddb/Person_87/rec_2.dat
 
 def q31sat(x):
      if x > 0x7FFFFFFF: