Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
rkorytkowski committed Dec 17, 2024
1 parent 689fc03 commit a973442
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/importers/importer.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ def run(self): # pylint: disable=too-many-locals

if not self.path.startswith('/'): # not local path
key = self.path
protocol_index = key.index('://')
protocol_index = key.find('://')
if protocol_index:
key = key[protocol_index+3:]
key = key.replace('/', '_')
Expand Down

0 comments on commit a973442

Please sign in to comment.