diff options
Diffstat (limited to 'MgaRepo')
-rw-r--r-- | MgaRepo/__init__.py | 2 | ||||
-rw-r--r-- | MgaRepo/cgiutil.py | 2 | ||||
-rw-r--r-- | MgaRepo/command.py | 2 | ||||
-rw-r--r-- | MgaRepo/log.py | 2 | ||||
-rw-r--r-- | MgaRepo/rpmutil.py | 2 | ||||
-rw-r--r-- | MgaRepo/simplerpm.py | 2 | ||||
-rw-r--r-- | MgaRepo/util.py | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/MgaRepo/__init__.py b/MgaRepo/__init__.py index 1758b83..3c39f55 100644 --- a/MgaRepo/__init__.py +++ b/MgaRepo/__init__.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/python3 import re import os import tempfile diff --git a/MgaRepo/cgiutil.py b/MgaRepo/cgiutil.py index f55518b..7dcc71b 100644 --- a/MgaRepo/cgiutil.py +++ b/MgaRepo/cgiutil.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/python3 from MgaRepo import Error, config from MgaRepo.svn import SVN from MgaRepo.ConfigParser import NoSectionError diff --git a/MgaRepo/command.py b/MgaRepo/command.py index 9fc9cef..72a6894 100644 --- a/MgaRepo/command.py +++ b/MgaRepo/command.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/python3 from MgaRepo import SilentError, Error, config import sys, os import urllib.parse diff --git a/MgaRepo/log.py b/MgaRepo/log.py index 5fded7c..fba00dd 100644 --- a/MgaRepo/log.py +++ b/MgaRepo/log.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/python3 from MgaRepo import Error, config, layout from MgaRepo.svn import SVN from MgaRepo.util import execcmd diff --git a/MgaRepo/rpmutil.py b/MgaRepo/rpmutil.py index facdd44..6e39495 100644 --- a/MgaRepo/rpmutil.py +++ b/MgaRepo/rpmutil.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/python3 from MgaRepo import Error, config from MgaRepo import mirror, layout, log, binrepo from MgaRepo.svn import SVN diff --git a/MgaRepo/simplerpm.py b/MgaRepo/simplerpm.py index 2f968b0..a06e694 100644 --- a/MgaRepo/simplerpm.py +++ b/MgaRepo/simplerpm.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/python3 from MgaRepo.util import execcmd class SRPM: diff --git a/MgaRepo/util.py b/MgaRepo/util.py index 8271aec..17323c5 100644 --- a/MgaRepo/util.py +++ b/MgaRepo/util.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/python3 from MgaRepo import Error, config |