fix import

This commit is contained in:
2024-11-28 23:46:48 +01:00
parent e8ba6df102
commit 99dc6e0abf
20 changed files with 112 additions and 94 deletions
+5 -2
View File
@@ -18,6 +18,7 @@
#
# -----------------------------------------------------------------------
import sys
try:
sys.stderr = open('/dev/null') # Silence silly warnings from paramiko
import paramiko
@@ -27,12 +28,14 @@ except ImportError as e:
sys.stderr = sys.__stderr__
import datetime
import base64
import datetime
import os
from libtisbackup.common import *
import re
from libtisbackup.common import *
class backup_oracle(backup_generic):
"""Backup a oracle database as zipped file through ssh"""
type = 'oracle+ssh'