Skip to content

Commit

Permalink
typo on ipaddr
Browse files Browse the repository at this point in the history
  • Loading branch information
gdchamal committed Feb 5, 2012
1 parent dacdbbf commit b02b4ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion overmind/provisioning/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ def private_ip(self):
def create_ip(self, ip, position, is_public):
ipaddr = IP(ip)
return NodeIP.objects.create(
address=ipaddr.i.strFullsize(), position=position, version=ipaddr.version(),
address=ipaddr.strFullsize(), position=position, version=ipaddr.version(),
is_public=is_public, node=self
)

Expand Down

0 comments on commit b02b4ec

Please sign in to comment.