Переглянути джерело

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

ayush.goyal 3 роки тому
батько
коміт
5199e3e24e
1 змінених файлів з 1 додано та 1 видалено
  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']