mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-21 07:52:21 -04:00
12 lines
226 B
Diff
12 lines
226 B
Diff
Use importlib as imp is removed in python3.12
|
|
--- a/tests/test_manhole.py
|
|
+++ b/tests/test_manhole.py
|
|
@@ -1,6 +1,6 @@
|
|
from __future__ import print_function
|
|
|
|
-import imp
|
|
+import importlib
|
|
import os
|
|
import re
|
|
import select
|