Title: [236203] trunk/Tools
Revision
236203
Author
[email protected]
Date
2018-09-19 06:50:14 -0700 (Wed, 19 Sep 2018)

Log Message

[WPE][GTK] Unreviewed, fix a pervasive typo in the webkit-flatpak script

* flatpak/flatpakutils.py:
(WebkitFlatpak.load_from_args):
(WebkitFlatpak.__init__):
(WebkitFlatpak.run):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (236202 => 236203)


--- trunk/Tools/ChangeLog	2018-09-19 13:49:43 UTC (rev 236202)
+++ trunk/Tools/ChangeLog	2018-09-19 13:50:14 UTC (rev 236203)
@@ -1,5 +1,14 @@
 2018-09-19  Michael Catanzaro  <[email protected]>
 
+        [WPE][GTK] Unreviewed, fix a pervasive typo in the webkit-flatpak script
+
+        * flatpak/flatpakutils.py:
+        (WebkitFlatpak.load_from_args):
+        (WebkitFlatpak.__init__):
+        (WebkitFlatpak.run):
+
+2018-09-19  Michael Catanzaro  <[email protected]>
+
         [WPE][GTK] Unreviewed, update to latest GNOME SDK
 
         * flatpak/org.webkit.WebKit.yaml:

Modified: trunk/Tools/flatpak/flatpakutils.py (236202 => 236203)


--- trunk/Tools/flatpak/flatpakutils.py	2018-09-19 13:49:43 UTC (rev 236202)
+++ trunk/Tools/flatpak/flatpakutils.py	2018-09-19 13:50:14 UTC (rev 236203)
@@ -504,7 +504,7 @@
         general.add_argument("-y", "--assumeyes",
                             help="Automatically answer yes for all questions.",
                             action=""
-        general.add_argument('--avalaible', action='', dest="check_avalaible", help='Check if required dependencies are avalaible.'),
+        general.add_argument('--available', action='', dest="check_available", help='Check if required dependencies are available.'),
 
         debugoptions = parser.add_argument_group("Debugging")
         debugoptions.add_argument("--gdb", nargs="?", help="Activate gdb, passing extra args to it if wanted.")
@@ -559,7 +559,7 @@
         self.cache_path = None
         self.app_module = None
         self.flatpak_default_args = []
-        self.check_avalaible = False
+        self.check_available = False
         self.assumeyes = False
 
         # Default application to run in the sandbox
@@ -737,7 +737,7 @@
         if not self.clean_args():
             return 1
 
-        if self.check_avalaible:
+        if self.check_available:
             return 0
 
         if self.clean:
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to