Browse Source

[importer] fixing encoding issue in importer for external file creation

ayush.goyal 2 years ago
parent
commit
5199e3e24e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      desktop/libs/indexer/src/indexer/indexers/sql.py

+ 1 - 1
desktop/libs/indexer/src/indexer/indexers/sql.py

@@ -87,7 +87,7 @@ class SQLIndexer(object):
     isIceberg = destination['isIceberg']
 
     external = not destination['useDefaultLocation']
-    external_path = urllib_unquote(destination['nonDefaultLocation'])
+    external_path = destination['nonDefaultLocation']
 
     editor_type = destination['sourceType']
     is_transactional = destination['isTransactional']