From bb4d676df3102e7b6989a7d0c36a3d198a5645ef Mon Sep 17 00:00:00 2001 From: Papoteur Date: Sat, 10 Oct 2015 09:31:52 +0200 Subject: Adapt shebang --- MgaRepo/__init__.py | 2 +- MgaRepo/cgiutil.py | 2 +- MgaRepo/command.py | 2 +- MgaRepo/log.py | 2 +- MgaRepo/rpmutil.py | 2 +- MgaRepo/simplerpm.py | 2 +- MgaRepo/util.py | 2 +- create-srpm | 2 +- mgarepo | 2 +- 9 files changed, 9 insertions(+), 9 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 diff --git a/create-srpm b/create-srpm index 3f63240..497ecd6 100755 --- a/create-srpm +++ b/create-srpm @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/python3 from MgaRepo import Error, config, plugins, layout from MgaRepo.mirror import strip_username diff --git a/mgarepo b/mgarepo index 0329522..3ad7428 100755 --- a/mgarepo +++ b/mgarepo @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/python3 from MgaRepo import Error, plugins, config from MgaRepo.command import * import getopt -- cgit v1.2.1