Skip to content

Commit

Permalink
typo fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jurka committed Jul 31, 2011
1 parent 8150f0d commit 8de8d05
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions gearoscope/apps/scoper/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class Server(models.Model):
ssh_port = models.PositiveIntegerField(default=22, verbose_name='SSH port')

def __unicode__(self):
'''Clean human-understanding string represantation for server node'''
'''Clean human-understanding string representation for server node'''
return '%s (%s)' % (self.name, self.host)

class ServerAdmin(admin.ModelAdmin):
Expand Down Expand Up @@ -97,7 +97,7 @@ def __unicode__(self):
return '%s:%s' % (self.server.host, self.port)

class GearmanAdmin(admin.ModelAdmin):
'''Params for gearman nodes managment via administrative panel'''
'''Params for gearman nodes management via administrative panel'''
pass

# Register gearman node manager in administration panel
Expand All @@ -120,7 +120,7 @@ class Supervisor(models.Model):
port = models.PositiveIntegerField(default=9001)

def __unicode__(self):
'''Clean human-understanding string represantation for supervisor daemon'''
'''Clean human-understanding string representation for supervisor daemon'''
return '%s:%s' % (self.server.host, self.port)

def crc_it(self):
Expand Down Expand Up @@ -229,7 +229,7 @@ class Worker(models.Model):

def __unicode__(self):
'''
Clean human-understanding string represantation for worker process
Clean human-understanding string representation for worker process
Contains process name and full string representation for supervisor model
object (see below for more details)
'''
Expand Down

0 comments on commit 8de8d05

Please sign in to comment.