Skip to content

Commit

Permalink
CPython: Fix runtime dependency: Don't use "os_path"
Browse files Browse the repository at this point in the history
  • Loading branch information
amotl committed Jul 26, 2021
1 parent 5bf6a11 commit 8f1078a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGES.rst
Expand Up @@ -7,6 +7,11 @@ Development
===========


2021-07-26 0.11.3
=================
- CPython: Fix runtime dependency: Don't use ``os_path``


2021-07-26 0.11.2
=================
- CPython: Add "psutil" to list of runtime dependencies
Expand Down
5 changes: 4 additions & 1 deletion src/lib/terkin/backup.py
Expand Up @@ -5,7 +5,10 @@
import os
import uos
import time
import os_path
try:
import os_path
except ImportError:
import os.path as os_path
from shutil import copyfileobj
from terkin import logging
from terkin.util import file_remove, file_exists, ensure_directory
Expand Down

0 comments on commit 8f1078a

Please sign in to comment.