diff options
author | Papoteur <papoteur@mageialinux-online.org> | 2015-10-10 09:31:52 +0200 |
---|---|---|
committer | Papoteur <papoteur@mageialinux-online.org> | 2015-10-10 09:31:52 +0200 |
commit | bb4d676df3102e7b6989a7d0c36a3d198a5645ef (patch) | |
tree | 0a12b091d20ae2fb6f824d3e204a158d9cb7b21d | |
parent | 142d404aa8cffc9f4785e5347f26036463dedcd4 (diff) | |
download | mgarepo-bb4d676df3102e7b6989a7d0c36a3d198a5645ef.tar mgarepo-bb4d676df3102e7b6989a7d0c36a3d198a5645ef.tar.gz mgarepo-bb4d676df3102e7b6989a7d0c36a3d198a5645ef.tar.bz2 mgarepo-bb4d676df3102e7b6989a7d0c36a3d198a5645ef.tar.xz mgarepo-bb4d676df3102e7b6989a7d0c36a3d198a5645ef.zip |
Adapt shebang
-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 | ||||
-rwxr-xr-x | create-srpm | 2 | ||||
-rwxr-xr-x | 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 @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/python3 from MgaRepo import Error, plugins, config from MgaRepo.command import * import getopt |