Commit 77a9e0b1 authored by Tomáš Peterka's avatar Tomáš Peterka

Rename UnImplementedError -> NonImpementedError

parent 66cdbd3b
...@@ -248,10 +248,10 @@ class Manager(object): ...@@ -248,10 +248,10 @@ class Manager(object):
short_name = None short_name = None
def format(self): def format(self):
raise UnimplementedError("Implement function to format underlaying OS") raise NotImplementedError("Implement function to format underlaying OS")
def update(self): def update(self):
raise UnimplementedError("Implement function to format underlaying OS") raise NotImplementedError("Implement function to format underlaying OS")
class CGroupManager(Manager): class CGroupManager(Manager):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment