Merge branch 'master' of github.com:GeoffreyFrogeye/dotfiles

This commit is contained in:
Geoffrey Frogeye 2016-02-19 13:48:56 +01:00
commit 758576532b
1 changed files with 2 additions and 2 deletions

View File

@ -15,8 +15,8 @@ DEBIAN_MIRROR = 'http://debian.polytech-lille.fr/debian/'
def globallyInstalled(name):
try:
a = subprocess.check_output(['apt-cache', 'policy', 'name']).decode('utf8').strip().lower()
return 'Installed: (none)' not in [b.strip() for b in a.decode('utf8').split('\n')]
a = subprocess.check_output(['apt-cache', 'policy', name]).decode('utf8').strip().lower()
return 'installé\xa0: (aucun)' not in [b.strip() for b in a.split('\n')]
except FileNotFoundError:
return False