diff options
Diffstat (limited to 'Python/importdl.c')
| -rw-r--r-- | Python/importdl.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/Python/importdl.c b/Python/importdl.c index bb90391c0b..579d2c5fad 100644 --- a/Python/importdl.c +++ b/Python/importdl.c @@ -45,7 +45,7 @@ get_encoded_name(PyObject *name, const char **hook_prefix) {      if (lastdot < -1) {          return NULL;      } else if (lastdot >= 0) { -        tmp = PyUnicode_Substring(name, lastdot, name_len); +        tmp = PyUnicode_Substring(name, lastdot + 1, name_len);          if (tmp == NULL)              return NULL;          name = tmp; | 
