Fixed bug in checking if path is writable.
authorJosh Blum <josh@joshknows.com>
Thu, 4 Mar 2010 00:42:50 +0000 (16:42 -0800)
committerJosh Blum <josh@joshknows.com>
Thu, 4 Mar 2010 00:42:50 +0000 (16:42 -0800)
Some moron put quotes around the variable name...

grc/python/Generator.py

index 6c7025443810bb9dc5acf908d78dbb7e4748944a..acd98ef8414ef2a6ee1241451efd28d76f70e511 100644 (file)
@@ -48,7 +48,7 @@ class Generator(object):
                        dirname = os.path.dirname(file_path)
                        #handle the case where the directory is read-only
                        #in this case, use the system's temp directory
-                       if not os.access('dirname', os.W_OK):
+                       if not os.access(dirname, os.W_OK):
                                dirname = tempfile.gettempdir()
                filename = self._flow_graph.get_option('id') + '.py'
                self._file_path = os.path.join(dirname, filename)