diff options
-rwxr-xr-x | clean_repo.py | 4 | ||||
-rwxr-xr-x | config.py | 2 | ||||
-rwxr-xr-x | filter.py | 4 | ||||
-rwxr-xr-x | list_nonfree_in_db.py | 4 |
4 files changed, 7 insertions, 7 deletions
diff --git a/clean_repo.py b/clean_repo.py index cc8e811..076de60 100755 --- a/clean_repo.py +++ b/clean_repo.py @@ -1,6 +1,6 @@ -#! /usr/bin/python +#! /usr/bin/python2 #-*- encoding: utf-8 -*- -from repm.filter import * +from filter import * import argparse def mkpending(packages_iterable, pending_file, blacklisted_names, @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/python2 # -*- coding: utf-8 -*- try: from subprocess import check_output @@ -1,7 +1,7 @@ -#! /usr/bin/python +#! /usr/bin/python2 #-*- encoding: utf-8 -*- from glob import glob -from repm.config import * +from config import * import tarfile def listado(filename, start=0, end=None): diff --git a/list_nonfree_in_db.py b/list_nonfree_in_db.py index 598a2e7..4e1b164 100755 --- a/list_nonfree_in_db.py +++ b/list_nonfree_in_db.py @@ -1,6 +1,6 @@ -#! /usr/bin/python +#! /usr/bin/python2 #-*- encoding: utf-8 -*- -from repm.filter import * +from filter import * import argparse if __name__ == "__main__": |