From 00362dc5fd0bf3fd6ff8ba34e530a5dece568d41 Mon Sep 17 00:00:00 2001 From: Felix Van der Jeugt Date: Tue, 22 Jan 2019 16:42:40 +0100 Subject: [PATCH] update alot --- local/bin/alot | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/local/bin/alot b/local/bin/alot index bc10bee..83b621a 100755 --- a/local/bin/alot +++ b/local/bin/alot @@ -1,6 +1,6 @@ -#!/usr/bin/python2 -# EASY-INSTALL-ENTRY-SCRIPT: 'alot==0.7','console_scripts','alot' -__requires__ = 'alot==0.7' +#!/usr/bin/python3 +# EASY-INSTALL-ENTRY-SCRIPT: 'alot==0.8','console_scripts','alot' +__requires__ = 'alot==0.8' import re import sys from pkg_resources import load_entry_point @@ -8,5 +8,5 @@ from pkg_resources import load_entry_point if __name__ == '__main__': sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) sys.exit( - load_entry_point('alot==0.7', 'console_scripts', 'alot')() + load_entry_point('alot==0.8', 'console_scripts', 'alot')() )