Skip to content

Commit

Permalink
Add missing backslash to README example (#264)
Browse files Browse the repository at this point in the history
  • Loading branch information
proinsias authored and JoshRosen committed Sep 8, 2016
1 parent 69aa802 commit f256b68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ df.write \
.option("url", "jdbc:redshift://redshifthost:5439/database?user=username&password=pass") \
.option("dbtable", "my_table_copy") \
.option("tempdir", "s3n://path/for/temp/data") \
.option("aws_iam_role", "arn:aws:iam::123456789000:role/redshift_iam_role")
.option("aws_iam_role", "arn:aws:iam::123456789000:role/redshift_iam_role") \
.mode("error") \
.save()
```
Expand Down

0 comments on commit f256b68

Please sign in to comment.