Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tutorius/store.py
diff options
context:
space:
mode:
Diffstat (limited to 'tutorius/store.py')
-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):
"""