Skip to content

Commit

Permalink
fix: log.error in ImportError
Browse files Browse the repository at this point in the history
  • Loading branch information
BetoFandino committed May 17, 2024
1 parent 7aa970c commit d02349b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eox_core/edxapp_wrapper/backends/coursekey_h_v1.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
from openedx.core.djangoapps.site_configuration.helpers import get_all_orgs, get_current_site_orgs
except ImportError:
get_all_orgs, get_current_site_orgs = object, object # pylint: disable=invalid-name
LOG.error("ImportError while importing %s", get_all_orgs, get_current_site_orgs)
LOG.error("ImportError while importing on get_all_orgs, get_current_site_orgs")


def get_valid_course_key(course_id):
Expand Down

0 comments on commit d02349b

Please sign in to comment.