Skip to content

Commit

Permalink
SystemInfo: Fix doc typo
Browse files Browse the repository at this point in the history
  • Loading branch information
philpep committed Mar 22, 2015
1 parent 0ee5c32 commit 77f3861
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions testinfra/modules/systeminfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def get_system_info(self):
def type(self):
"""OS type
>>> Sysinfo.type
>>> SystemInfo.type
'linux'
"""
return self.sysinfo["type"]
Expand All @@ -68,7 +68,7 @@ def type(self):
def distribution(self):
"""Distribution name
>>> Sysinfo.distribution
>>> SystemInfo.distribution
'debian'
"""
return self.sysinfo["distribution"]
Expand All @@ -77,7 +77,7 @@ def distribution(self):
def release(self):
"""Distribution release number
>>> Sysinfo.release
>>> SystemInfo.release
'7.8'
"""
return self.sysinfo["release"]
Expand All @@ -86,7 +86,7 @@ def release(self):
def codename(self):
"""Relase code name
>>> Sysinfo.codename
>>> SystemInfo.codename
'wheezy'
"""
return self.sysinfo["codename"]
Expand Down

0 comments on commit 77f3861

Please sign in to comment.