diff options
| author | Fbenas <philbeansburton@gmail.com> | 2020-11-06 01:13:58 +0000 | 
|---|---|---|
| committer | Fbenas <philbeansburton@gmail.com> | 2020-11-06 01:13:58 +0000 | 
| commit | 7a487014e41a6e716a0c12f497df3431dca7a095 (patch) | |
| tree | 9d6739fa1f35251cf02399c3a9e76c6ed04b8424 /initialism.py | |
| parent | 6124c24c27955fba67bd792bf3a06b9c4325f14f (diff) | |
Diffstat (limited to 'initialism.py')
| -rwxr-xr-x | initialism.py | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/initialism.py b/initialism.py index f94496b..5a47c55 100755 --- a/initialism.py +++ b/initialism.py @@ -38,9 +38,9 @@ def main():  		print ('!initialism {0}'.format(VERSION))  		sys.exit(0) -	words = [word.decode('utf-8') for word in args] +	words = [word for word in args]  	initialism = initialise(words) -	print (initialism.encode('utf-8')) +	print (initialism)  if __name__ == '__main__': | 
