Skip to content
Snippets Groups Projects
Commit 67ce7d21 authored by John Chilton's avatar John Chilton
Browse files

Fix lingering reference to lwr.util.

parent c325fb4f
No related branches found
No related tags found
No related merge requests found
...@@ -163,7 +163,8 @@ class LocalLwrInterface(object): ...@@ -163,7 +163,8 @@ class LocalLwrInterface(object):
if controller.response_type != 'file': if controller.response_type != 'file':
return controller.body(result) return controller.body(result)
else: else:
from lwr.util import copy_to_path # TODO: Add to Galaxy.
from galaxy.util import copy_to_path
with open(result, 'rb') as result_file: with open(result, 'rb') as result_file:
copy_to_path(result_file, output_path) copy_to_path(result_file, output_path)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment