Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tutorius/bundler.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tutorius/bundler.py b/tutorius/bundler.py
index 86bb6ba..d374924 100644
--- a/tutorius/bundler.py
+++ b/tutorius/bundler.py
@@ -127,13 +127,13 @@ class Serializer(object):
exception occur. If no GUID is provided, FSM is written in a new file
in the store root.
"""
- return NotImplementedError()
+ raise NotImplementedError()
def load_fsm(self):
"""
Load fsm from disk.
"""
- return NotImplementedError()
+ raise NotImplementedError()
class XMLSerializer(Serializer):
"""