From 9916efc4278d6811fab06585a0c0b6ab649b65ef Mon Sep 17 00:00:00 2001 From: Raul Gutierrez Segales Date: Sun, 06 Feb 2011 15:36:40 +0000 Subject: Forgot to add the self parameter when making mkdir_p an instance method --- diff --git a/turtleart.py b/turtleart.py index 3b5c195..0525b0d 100755 --- a/turtleart.py +++ b/turtleart.py @@ -96,7 +96,7 @@ class TurtleMain(): self._collab_plugin.set_tw(self.tw) self._collab_plugin.setup() - def _mkdir_p(path): + def _mkdir_p(self, path): '''Create a directory in a fashion similar to `mkdir -p`''' try: os.makedirs(path) -- cgit v0.9.1