aboutsummaryrefslogtreecommitdiffstats
path: root/MgaRepo
diff options
context:
space:
mode:
authorPapoteur <papoteur@mageialinux-online.org>2015-10-10 09:31:52 +0200
committerPapoteur <papoteur@mageialinux-online.org>2015-10-10 09:31:52 +0200
commitbb4d676df3102e7b6989a7d0c36a3d198a5645ef (patch)
tree0a12b091d20ae2fb6f824d3e204a158d9cb7b21d /MgaRepo
parent142d404aa8cffc9f4785e5347f26036463dedcd4 (diff)
downloadmgarepo-bb4d676df3102e7b6989a7d0c36a3d198a5645ef.tar
mgarepo-bb4d676df3102e7b6989a7d0c36a3d198a5645ef.tar.gz
mgarepo-bb4d676df3102e7b6989a7d0c36a3d198a5645ef.tar.bz2
mgarepo-bb4d676df3102e7b6989a7d0c36a3d198a5645ef.tar.xz
mgarepo-bb4d676df3102e7b6989a7d0c36a3d198a5645ef.zip
Adapt shebang
Diffstat (limited to 'MgaRepo')
-rw-r--r--MgaRepo/__init__.py2
-rw-r--r--MgaRepo/cgiutil.py2
-rw-r--r--MgaRepo/command.py2
-rw-r--r--MgaRepo/log.py2
-rw-r--r--MgaRepo/rpmutil.py2
-rw-r--r--MgaRepo/simplerpm.py2
-rw-r--r--MgaRepo/util.py2
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