Skip to content

Commit e21e265

Browse files
lakshmanaramcoderick14
authored andcommitted
bug fix - added base class function for run
1 parent a9c2d69 commit e21e265

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

ACedIt/install_entry.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
import os
33
from setuptools.command.install import install
44

5+
56
class InstallEntry(install):
67

78
def run(self):
@@ -22,4 +23,5 @@ def run(self):
2223
data = {'default_site': default_site.strip(), 'workdir': os.path.expanduser('~'),
2324
'cachedir': cache_dir}
2425
with open(os.path.join(cache_dir, 'constants.json'), 'w') as f:
25-
f.write(json.dumps(data, indent=2))
26+
f.write(json.dumps(data, indent=2))
27+
install.run(self)

0 commit comments

Comments
 (0)