X-Git-Url: http://gitweb.pimeys.fr/?p=today.git;a=blobdiff_plain;f=today.py;h=26c3e2bdaf4b6f827c72fde823e74ae0727cf05f;hp=e430fd881a3030ab8768ced77b3ca24f4ae4366d;hb=1572b4fbed22c24d0e76074780265031d72af9ca;hpb=b28fd9bf0a3d390494519bf1f825763906ff73a2 diff --git a/today.py b/today.py index e430fd8..26c3e2b 100755 --- a/today.py +++ b/today.py @@ -450,7 +450,7 @@ if __name__ == "__main__": output = ACTIONS[None]() else: commande = sys.argv[1] - args = sys.argv[2:] + args = [s.decode("utf-8") for s in sys.argv[2:]] output = ACTIONS[commande](*args) if output: print output.encode("utf-8")