Here, answer is yes. There is error in This message. Error is in bit $6$.
How to calculate it? First of all reverse given input to get it in correct position from $1$ to $7$.
$0110001$
$\text{Bit-1, Bit-2 & Bit-4}$ are partity bits.
Calculating position of error $\Rightarrow$
$\text{$\large c_4 c_2 c_1$}$
$\text{1 1 0}$
Here, $c4 = bit4\oplus bit5 \oplus bit6 \oplus bit7=0\oplus 0\oplus 0\oplus 1=1$
$\text{ (Taking Even parity )}$
$c2 = bit2\oplus bit3\oplus bit6\oplus bit7=1\oplus 1\oplus 0\oplus 1=1$
$c1= bit1\oplus bit3\oplus bit5\oplus bit7=0\oplus 1\oplus 0\oplus 1=0$
Reference: $\Rightarrow$ https://en.wikipedia.org/wiki/Hamming%287,4%29
When you correct bit $6$.
You get message as $0110011$.
If you calculate $\large c_4,c_2,c_1$ all will be $0$ now!