Skip to content

Commit

Permalink
missing separator in path
Browse files Browse the repository at this point in the history
  • Loading branch information
petersilva committed Dec 12, 2024
1 parent 05b1165 commit 458858d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sarracenia/flowcb/work/delete.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,9 @@ def after_accept(self, worklist):

#FIXME: there should be some reference to baseDir here... for url's that aren't file ones.
# just getting it to work for particular case for now 2021/12/09 - pas
sep = '/' if ( message['baseUrl'][-1] != '/' ) else ''
message['delete_source'] = message['baseUrl'].lstrip(
'file:') + message['relPath']
'file:') + sep + message['relPath']

def after_work(self, worklist):

Expand Down

0 comments on commit 458858d

Please sign in to comment.