Skip to content

Commit

Permalink
fixed _ error
Browse files Browse the repository at this point in the history
  • Loading branch information
Arohan Ajit authored and Arohan Ajit committed Oct 15, 2024
1 parent 0394787 commit f2a49b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gui/wxpython/modules/import_export.py
Original file line number Diff line number Diff line change
Expand Up @@ -647,7 +647,7 @@ def OnRun(self, event):
if ext and layer.rfind(ext) > -1:
layer = layer.replace("." + ext, "")
if "|" in layer:
layer, _ = layer.split("|", 1)
layer = layer.split("|", 1)[0]

cmd = self.getSettingsPageCmd()
cmd.append("input=%s" % dsn)
Expand Down

0 comments on commit f2a49b9

Please sign in to comment.