We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a44c40c commit ed02c11Copy full SHA for ed02c11
mkdocs_git_revision_date_localized_plugin/plugin.py
@@ -1,13 +1,12 @@
1
import re
2
from mkdocs.config import config_options
3
from mkdocs.plugins import BasePlugin
4
-from mkdocs.utils import string_types
5
from .util import Util
6
7
class GitRevisionDateLocalizedPlugin(BasePlugin):
8
config_scheme = (
9
- ('locale', config_options.Type(string_types, default='')),
10
- ('type', config_options.Type(string_types, default='date'))
+ ('locale', config_options.Type(str, default='')),
+ ('type', config_options.Type(str, default='date'))
11
)
12
13
def __init__(self):
0 commit comments