Skip to content

Commit

Permalink
Fix to Issue MarketSquare#68
Browse files Browse the repository at this point in the history
MarketSquare#68

Make Execfile 2-3 comp
  • Loading branch information
Grant McCloskey committed Aug 23, 2018
1 parent c906058 commit 0d47ffd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
from os.path import join, dirname, abspath

CURDIR = dirname(abspath(__file__))
execfile(join(CURDIR, 'src', 'Rammbock', 'version.py'))
filename=join(CURDIR, 'src', 'Rammbock', 'version.py')
exec(compile(open(filename, "rb").read(), filename, 'exec'))

setup(name = 'robotframework-rammbock',
version = VERSION,
Expand Down

0 comments on commit 0d47ffd

Please sign in to comment.