Remove accidental .py extensions from module imports #12987
3 changed files with 3 additions and 3 deletions
|
|
@ -10,7 +10,7 @@ import threading
|
|||
import bugzilla
|
||||
import koji
|
||||
|
||||
from mass_rebuilds_info.py import MASSREBUILDS
|
||||
from mass_rebuilds_info import MASSREBUILDS
|
||||
|
||||
LOGGER = logging.getLogger(__name__)
|
||||
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@ from find_failures import get_failed_builds
|
|||
|
||||
# contains info about all rebuilds, add new rebuilds there and update rebuildid
|
||||
# here
|
||||
from mass_rebuilds_info.py import MASSREBUILDS
|
||||
from mass_rebuilds_info import MASSREBUILDS
|
||||
|
||||
rebuildid = 'f43'
|
||||
failures = {} # dict of owners to lists of packages that failed.
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@ import time
|
|||
|
||||
# contains info about all rebuilds, add new rebuilds there and update rebuildid
|
||||
# here
|
||||
from mass_rebuilds_info.py import MASSREBUILDS
|
||||
from mass_rebuilds_info import MASSREBUILDS
|
||||
|
||||
# Configuration for retry logic
|
||||
MAX_RETRIES = 3 # Number of retries
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue