How to remove period after part number in TOC (KOMA used)?
My solution was to set tocloft package, which is provide command \cftpartaftersnum but I do not want to use it for some compatibility reasons.

\documentclass{scrbook}
\usepackage{polyglossia}
%\usepackage{tocloft}
%\setmainlanguage{ukrainian}
\usepackage{etoolbox}
\renewcommand*{\figureformat}{%
\figurename~\thefigure%
% \autodot% DELETED
}
\makeatletter
\makeatother
\begin{document}
\tableofcontents
\part{One}
\part{Two}
\end{document}



\makeatletter\renewcommand*{\numberline@numberformat}[1]{\ifstr{#1}{}{}{#1}}\makeatotherin the preamble. – karlkoeller Jan 19 '15 at 10:561.is different from1? This might lead to confusion. – Johannes_B Jan 20 '15 at 08:01