aboutsummaryrefslogtreecommitdiff
path: root/rpkid/rpki/gui/routeview
diff options
context:
space:
mode:
authorMichael Elkins <melkins@tislabs.com>2012-01-17 05:03:02 +0000
committerMichael Elkins <melkins@tislabs.com>2012-01-17 05:03:02 +0000
commit8e6b05e18acf519fd700a2ad5d2e088c6ccc86c9 (patch)
treeb8633c3b5af6763a86a9f3f23d6a0b02e21c5a87 /rpkid/rpki/gui/routeview
parent6383348fbfd65877ba2957c70d461ee466a86bac (diff)
fix module docstrings
svn path=/branches/tk161/; revision=4166
Diffstat (limited to 'rpkid/rpki/gui/routeview')
-rw-r--r--rpkid/rpki/gui/routeview/models.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/rpkid/rpki/gui/routeview/models.py b/rpkid/rpki/gui/routeview/models.py
index 912ae929..6fa8f0f8 100644
--- a/rpkid/rpki/gui/routeview/models.py
+++ b/rpkid/rpki/gui/routeview/models.py
@@ -2,7 +2,7 @@ import django.db.models
import rpki.gui.models
class RouteOrigin(rpki.gui.models.PrefixV4):
- "Represents a BGP routing table entry."
+ "Represents an IPv4 BGP routing table entry."
asn = django.db.models.PositiveIntegerField(help_text='origin AS', null=False)
@@ -10,7 +10,7 @@ class RouteOrigin(rpki.gui.models.PrefixV4):
return u"AS%d's route origin for %s" % (self.asn, self.get_prefix_display())
class RouteOriginV6(rpki.gui.models.PrefixV6):
- "Represents a BGP routing table entry."
+ "Represents an IPv6 BGP routing table entry."
asn = django.db.models.PositiveIntegerField(help_text='origin AS', null=False)