b9a64e5
diff --git a/py/selenium/webdriver/firefox/firefox_binary.py b/py/selenium/webdriver/firefox/firefox_binary.py
a27848b
index fdd1fd3..0025e2f 100644
b9a64e5
--- a/py/selenium/webdriver/firefox/firefox_binary.py
b9a64e5
+++ b/py/selenium/webdriver/firefox/firefox_binary.py
a27848b
@@ -192,11 +192,12 @@ class FirefoxBinary(object):
09ff4da
             if not os.path.exists(library_path):
09ff4da
                 os.makedirs(library_path)
b9a64e5
             import shutil
a27848b
-            shutil.copy(os.path.join(
a27848b
-                os.path.dirname(__file__),
a27848b
-                path,
a27848b
-                self.NO_FOCUS_LIBRARY_NAME),
a27848b
-                library_path)
b9a64e5
+            try:
b9a64e5
+                shutil.copy(os.path.join(os.path.dirname(__file__), path,
b9a64e5
+                    self.NO_FOCUS_LIBRARY_NAME),
b9a64e5
+                    library_path)
b9a64e5
+            except:
b9a64e5
+                pass  # A Man's Gotta Do ...
b9a64e5
             built_path += library_path + ":"
b9a64e5
 
b9a64e5
         return built_path