File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
mkdocs_git_revision_date_localized_plugin Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 11import re
22from mkdocs .config import config_options
33from mkdocs .plugins import BasePlugin
4- from mkdocs .utils import string_types
54from .util import Util
65
76class GitRevisionDateLocalizedPlugin (BasePlugin ):
87 config_scheme = (
9- ('locale' , config_options .Type (string_types , default = '' )),
10- ('type' , config_options .Type (string_types , default = 'date' ))
8+ ('locale' , config_options .Type (str , default = '' )),
9+ ('type' , config_options .Type (str , default = 'date' ))
1110 )
1211
1312 def __init__ (self ):
Original file line number Diff line number Diff line change 55
66setup (
77 name = 'mkdocs-git-revision-date-localized-plugin' ,
8- version = '0.4.5 ' ,
8+ version = '0.4.6 ' ,
99 description = 'Mkdocs plugin that enables displaying the localized date of the last git modification of a markdown file.' ,
1010 long_description = long_description ,
1111 long_description_content_type = "text/markdown" ,
You can’t perform that action at this time.
0 commit comments