diff --git a/third_party_wrappers.info b/third_party_wrappers.info
index 9ca1808..1df30b6 100644
--- a/third_party_wrappers.info
+++ b/third_party_wrappers.info
@@ -4,5 +4,3 @@ core = 7.x
 package = Third Party Wrappers
 
 configure = admin/config/services/third-party-wrappers
-
-dependencies[] = context
diff --git a/third_party_wrappers.module b/third_party_wrappers.module
index 7d5f63c..2b08734 100644
--- a/third_party_wrappers.module
+++ b/third_party_wrappers.module
@@ -352,7 +352,7 @@ function third_party_wrappers_context_registry() {
  * Implements hook_init().
  */
 function third_party_wrappers_init() {
-  if ($plugin = context_get_plugin('condition', 'third_party_wrappers_condition_wrapper')) {
+  if (module_exists('context') && $plugin = context_get_plugin('condition', 'third_party_wrappers_condition_wrapper')) {
     $plugin->execute();
   }
 }
