Add "or '.'" after dirname() calls in hooke.command_stack and .playlist.
[hooke.git] / hooke / command_stack.py
index 9b2dcd7ca9eae50d0bbeaac25db1e064393555a3..c1164732f687ebad51374afb0be99d97fbaa6836 100644 (file)
@@ -154,7 +154,7 @@ class FileCommandStack (CommandStack):
         """Saves the command stack to `path`.
         """
         self.set_path(path)
-        dirname = os.path.dirname(self.path)
+        dirname = os.path.dirname(self.path) or '.'
         if makedirs == True and not os.path.isdir(dirname):
             os.makedirs(dirname)
         with open(self.path, 'w') as f: