Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tutorius
diff options
context:
space:
mode:
authorSimon Poirier <simpoir@gmail.com>2009-10-30 20:28:15 (GMT)
committer Simon Poirier <simpoir@gmail.com>2009-10-30 20:37:29 (GMT)
commit794e7ebdcd6ab80f0cba235c46fba46b8c5c3cef (patch)
treef5813be0e9d0da8970181bc1c79a1a09fd9beda3 /tutorius
parent37e2ab5dd552be9aec49ccf774c90da8b962ea9f (diff)
test utils and NotImplemented tests cleaning
Diffstat (limited to 'tutorius')
-rw-r--r--tutorius/store.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tutorius/store.py b/tutorius/store.py
index 480c81b..9c8bdff 100644
--- a/tutorius/store.py
+++ b/tutorius/store.py
@@ -136,7 +136,7 @@ class StoreProxy(object):
content itself and not the path to the file.
@return True if the tutorial was sent correctly, False otherwise.
"""
- raise NotImplemetedError("publish() not implemented")
+ raise NotImplementedError("publish() not implemented")
def unpublish(self, tutorial_store_id):
"""
@@ -149,7 +149,7 @@ class StoreProxy(object):
@param tutorial_store_id The ID of the tutorial to be removed
@return True if the tutorial was properly removed from the server
"""
- raise NotImplementedError("unpublish() not implemeted")
+ raise NotImplementedError("unpublish() not implemented")
def update_published_tutorial(self, tutorial_id, tutorial):
"""