From 77eab0c0e6ca3e2c7c467e26cc4f47bf369c68c0 Mon Sep 17 00:00:00 2001 From: Jason Piper Date: Fri, 10 Jan 2014 17:45:05 +0000 Subject: [PATCH] Fix broken example --- examples/get_each_args.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) mode change 100644 => 100755 examples/get_each_args.py diff --git a/examples/get_each_args.py b/examples/get_each_args.py old mode 100644 new mode 100755 index b18c7ad..1f1e5a5 --- a/examples/get_each_args.py +++ b/examples/get_each_args.py @@ -1,10 +1,10 @@ #! /usr/bin/env python # -*- coding: utf-8 -*- -from clint import args +from clint.arguments import Args from clint.textui import puts, colored -all_args = args.grouped +all_args = Args().grouped for item in all_args: if item is not '_':