Blame SOURCES/selenium-use-without-bundled-libs.patch

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