Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/devbot/autoinstall.py
diff options
context:
space:
mode:
Diffstat (limited to 'devbot/autoinstall.py')
-rwxr-xr-xdevbot/autoinstall.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/devbot/autoinstall.py b/devbot/autoinstall.py
index bb0e469..053262e 100755
--- a/devbot/autoinstall.py
+++ b/devbot/autoinstall.py
@@ -27,8 +27,8 @@ def _install(module, file):
for variable in makefile:
if variable.endswith("_PYTHON"):
dir_variable = "%sdir" % variable.replace("_PYTHON", "")
- install_dir = makefile[dir_variable]
- shutil.copy(file.get_path(), install_dir)
+ prefix_dir = makefile[dir_variable]
+ shutil.copy(file.get_path(), prefix_dir)
def _changed_cb(monitor, file, other_file, event_flags, module):
if event_flags == Gio.FileMonitorEvent.CHANGED: