diff options
author | Dylan Baker <baker.dylan.c@gmail.com> | 2014-01-14 17:36:45 -0800 |
---|---|---|
committer | Dylan Baker <baker.dylan.c@gmail.com> | 2014-01-28 09:16:33 -0800 |
commit | 1119bb1f30951a2f2dc7e4950c4be2ef961fed95 (patch) | |
tree | 4ef83b786828a624e1a48ae3e61a54e2775d1ea2 /framework/status.py | |
parent | 4f38d0ace5779345f0cfeac7d37ec715c40006ed (diff) |
status.py: remove Status.split()
This was used in development of the status class, but is not used in any
production code. Since it's not needed it should be removed.
Signed-off-by: Dylan Baker <baker.dylan.c@gmail.com>
Diffstat (limited to 'framework/status.py')
-rw-r--r-- | framework/status.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/framework/status.py b/framework/status.py index 4264577ee..98e11d264 100644 --- a/framework/status.py +++ b/framework/status.py @@ -106,9 +106,6 @@ class Status(object): def __init__(self): raise NotImplementedError - def split(self, spliton): - return (self.name.split(spliton)) - def __repr__(self): return self.name |