From 97afc49bb0cca34cb83b371c5f83d74cb3974b91 Mon Sep 17 00:00:00 2001 From: Aymeric Augustin Date: Sun, 3 Mar 2013 16:07:38 +0100 Subject: [PATCH] Removed unnecessary imports. --- docs/topics/db/examples/one_to_one.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/topics/db/examples/one_to_one.txt b/docs/topics/db/examples/one_to_one.txt index 4c8e0ecfcc..09634c84c7 100644 --- a/docs/topics/db/examples/one_to_one.txt +++ b/docs/topics/db/examples/one_to_one.txt @@ -10,7 +10,7 @@ In this example, a ``Place`` optionally can be a ``Restaurant``: .. code-block:: python - from django.db import models, transaction, IntegrityError + from django.db import models class Place(models.Model): name = models.CharField(max_length=50)