Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
anaselli committed Dec 30, 2024
1 parent bb1e31f commit 4164a5f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions dnfdragora/dnfd_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -1469,9 +1469,9 @@ def Reinstall(self, specs, options={}, sync=False):
Unknown options are ignored.
'''
if not sync:
self._run_dbus_async('Reinstall', False, specs, option)
self._run_dbus_async('Reinstall', False, specs, options)
else:
self._run_dbus_sync('Reinstall', specs, option)
self._run_dbus_sync('Reinstall', specs, options)

def Downgrade(self, specs, options={}, sync=False):
'''
Expand All @@ -1484,9 +1484,9 @@ def Downgrade(self, specs, options={}, sync=False):
Unknown options are ignored.
'''
if not sync:
self._run_dbus_async('Downgrade', False, specs, option)
self._run_dbus_async('Downgrade', False, specs, options)
else:
self._run_dbus_sync('Downgrade', specs, option)
self._run_dbus_sync('Downgrade', specs, options)

def DistroSync(self, specs, options={}, sync=False):
'''
Expand All @@ -1500,9 +1500,9 @@ def DistroSync(self, specs, options={}, sync=False):
Unknown options are ignored.
'''
if not sync:
self._run_dbus_async('DistroSync', False, specs, option)
self._run_dbus_async('DistroSync', False, specs, options)
else:
self._run_dbus_sync('DistroSync', specs, option)
self._run_dbus_sync('DistroSync', specs, options)

def BuildTransaction(self, options={}, sync=False):
'''
Expand Down

0 comments on commit 4164a5f

Please sign in to comment.