Skip to content

Commit e31f0ef

Browse files
committed
typos with a list as a side effect...
1 parent 2202b95 commit e31f0ef

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

dnfdragora/ui.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1957,7 +1957,7 @@ class LIBDNF_API TransactionCallbacks {
19571957
/// @return string representation of the scriptlet type
19581958
static const char * script_type_to_string(ScriptType type) noexcept;
19591959
'''
1960-
scriptletType=libdnf5.rpm.TransactionCallbacks.script_type_to_string(scriptlet_type),
1960+
scriptletType=libdnf5.rpm.TransactionCallbacks.script_type_to_string(scriptlet_type)
19611961
values = (session_object_path,nevra, scriptlet_type, scriptletType)
19621962
logger.debug('OnTransactionScriptStart: %s', repr(values))
19631963
if session_object_path != self.backend.session_path :
@@ -1977,7 +1977,7 @@ def _OnTransactionScriptStop(self, session_object_path, nevra, scriptlet_type, r
19771977
@scriptlet_type: scriptlet type that started (pre, post,...)
19781978
@return_code: return value of the script
19791979
'''
1980-
scriptletType=libdnf5.rpm.TransactionCallbacks.script_type_to_string(scriptlet_type),
1980+
scriptletType=libdnf5.rpm.TransactionCallbacks.script_type_to_string(scriptlet_type)
19811981
values = (session_object_path,nevra, scriptlet_type, scriptletType, return_code)
19821982
logger.debug('OnTransactionScriptStop: %s', repr(values))
19831983
if session_object_path != self.backend.session_path :
@@ -1995,7 +1995,7 @@ def _OnTransactionScriptError(self, session_object_path, nevra, scriptlet_type,
19951995
@scriptlet_type: scriptlet type that started (pre, post,...)
19961996
@return_code: return value of the script
19971997
'''
1998-
scriptletType=libdnf5.rpm.TransactionCallbacks.script_type_to_string(scriptlet_type),
1998+
scriptletType=libdnf5.rpm.TransactionCallbacks.script_type_to_string(scriptlet_type)
19991999
values = (session_object_path,nevra, scriptlet_type, scriptletType, return_code)
20002000
logger.error('_OnTransactionScriptError: %s', repr(values))
20012001
if session_object_path != self.backend.session_path :

0 commit comments

Comments
 (0)