Skip to content

Commit

Permalink
typos with a list as a side effect...
Browse files Browse the repository at this point in the history
  • Loading branch information
anaselli committed Dec 29, 2024
1 parent 2202b95 commit e31f0ef
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dnfdragora/ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -1957,7 +1957,7 @@ class LIBDNF_API TransactionCallbacks {
/// @return string representation of the scriptlet type
static const char * script_type_to_string(ScriptType type) noexcept;
'''
scriptletType=libdnf5.rpm.TransactionCallbacks.script_type_to_string(scriptlet_type),
scriptletType=libdnf5.rpm.TransactionCallbacks.script_type_to_string(scriptlet_type)
values = (session_object_path,nevra, scriptlet_type, scriptletType)
logger.debug('OnTransactionScriptStart: %s', repr(values))
if session_object_path != self.backend.session_path :
Expand All @@ -1977,7 +1977,7 @@ def _OnTransactionScriptStop(self, session_object_path, nevra, scriptlet_type, r
@scriptlet_type: scriptlet type that started (pre, post,...)
@return_code: return value of the script
'''
scriptletType=libdnf5.rpm.TransactionCallbacks.script_type_to_string(scriptlet_type),
scriptletType=libdnf5.rpm.TransactionCallbacks.script_type_to_string(scriptlet_type)
values = (session_object_path,nevra, scriptlet_type, scriptletType, return_code)
logger.debug('OnTransactionScriptStop: %s', repr(values))
if session_object_path != self.backend.session_path :
Expand All @@ -1995,7 +1995,7 @@ def _OnTransactionScriptError(self, session_object_path, nevra, scriptlet_type,
@scriptlet_type: scriptlet type that started (pre, post,...)
@return_code: return value of the script
'''
scriptletType=libdnf5.rpm.TransactionCallbacks.script_type_to_string(scriptlet_type),
scriptletType=libdnf5.rpm.TransactionCallbacks.script_type_to_string(scriptlet_type)
values = (session_object_path,nevra, scriptlet_type, scriptletType, return_code)
logger.error('_OnTransactionScriptError: %s', repr(values))
if session_object_path != self.backend.session_path :
Expand Down

0 comments on commit e31f0ef

Please sign in to comment.