From 1b904ba0fb81afe38ba41facb9ed8dadebc7d5e2 Mon Sep 17 00:00:00 2001 From: Arthur de Jong Date: Sun, 6 Mar 2011 21:56:20 +0000 Subject: also support Python3 with the same codebase (see #3) git-svn-id: http://arthurdejong.org/svn/python-stdnum/python-stdnum@69 9dea7c4f-944c-4273-ac1a-574ede026edc --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index b5fd977..801030a 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ import stdnum # fix permissions for sdist if 'sdist' in sys.argv: os.system('chmod -R a+rX .') - os.umask(022) + os.umask(int('022', 8)) setup(name='python-stdnum', version='0.4', -- cgit v1.2.3