Skip to content

Commit

Permalink
Fix invalid requests imports introduced in #4604.
Browse files Browse the repository at this point in the history
Even when we remove the requests controller the pyc files will stick around - so probably best to keep these absolute imports for these controllers indefinitely. This broke workflow import from URL coming through the GUI and so it broke a bunch of Selenium tests.
  • Loading branch information
jmchilton authored and natefoo committed Oct 13, 2017
1 parent e4518ff commit b5ded00
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/galaxy/webapps/galaxy/controllers/async.py
Expand Up @@ -2,6 +2,8 @@
Upload class
"""

from __future__ import absolute_import

import logging
import urllib

Expand Down
2 changes: 2 additions & 0 deletions lib/galaxy/webapps/galaxy/controllers/library_common.py
@@ -1,3 +1,5 @@
from __future__ import absolute_import

import glob
import json
import logging
Expand Down
2 changes: 2 additions & 0 deletions lib/galaxy/webapps/galaxy/controllers/root.py
@@ -1,6 +1,8 @@
"""
Contains the main interface in the Universe class
"""
from __future__ import absolute_import

import cgi
import os

Expand Down
2 changes: 2 additions & 0 deletions lib/galaxy/webapps/galaxy/controllers/workflow.py
@@ -1,3 +1,5 @@
from __future__ import absolute_import

import base64
import httplib
import json
Expand Down

0 comments on commit b5ded00

Please sign in to comment.