Skip to content

Commit

Permalink
fix: fix path returned by get_source()
Browse files Browse the repository at this point in the history
  • Loading branch information
johanneskoester committed Sep 29, 2021
1 parent 87567e2 commit ee05315
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion snakemake/script.py
Expand Up @@ -1255,7 +1255,7 @@ def get_source(

is_local = isinstance(source_file, LocalSourceFile)

return path, source, language, is_local
return source_file, source, language, is_local


def get_language(source_file, source):
Expand Down

0 comments on commit ee05315

Please sign in to comment.