diff --git a/includes/import.inc b/includes/import.inc
index c238888..9d65547 100644
--- a/includes/import.inc
+++ b/includes/import.inc
@@ -420,6 +420,10 @@ function menu_import_create_node($options) {
 
   if (!empty($options['path_alias'])) {
     $node->path = array('alias' => $options['path_alias']);
+    // Make sure pathauto is not being used
+    if (module_exists('pathauto')) {
+      $node->path['pathauto'] = FALSE;
+    }
   }
 
   node_save($node);
