Error performing last step in Import Using Cypher

If you are getting this error:

Invalid input '}': expected an identifier character, '.', whitespace, '(', node labels or rel types, '[', '^', '*', '/', '%', '+', '-', "=~", IN, STARTS, ENDS, CONTAINS, IS, '=', "<>", "!=", '<', '>', "<=", ">=", AND, XOR, OR, ',' or ')' (line 5, column 47 (offset: 154))
"MATCH (m:Movie {movieId: toInteger(row.movieId})"
^

The reason is a ) missing in the query in the Step 7: Import the User data in course [Import Using Cypher](http://Import%20Using Cypher).

Replace line 5 of the query with this:

MATCH (m:Movie {movieId: toInteger(row.movieId)})

@elaine_rosenber could you fix it?

This has been fixed.

Thanks