diff mbox

[Branch,~linaro-validation/lava-dispatcher/trunk] Rev 419: missing self.

Message ID 20121024004910.19008.53810.launchpad@ackee.canonical.com
State Accepted
Headers show

Commit Message

Michael-Doyle Hudson Oct. 24, 2012, 12:49 a.m. UTC
------------------------------------------------------------
revno: 419
committer: Michael Hudson-Doyle <michael.hudson@linaro.org>
branch nick: trunk
timestamp: Wed 2012-10-24 13:47:43 +1300
message:
  missing self.
modified:
  lava_dispatcher/device/target.py


--
lp:lava-dispatcher
https://code.launchpad.net/~linaro-validation/lava-dispatcher/trunk

You are subscribed to branch lp:lava-dispatcher.
To unsubscribe from this branch go to https://code.launchpad.net/~linaro-validation/lava-dispatcher/trunk/+edit-subscription
diff mbox

Patch

=== modified file 'lava_dispatcher/device/target.py'
--- lava_dispatcher/device/target.py	2012-10-23 17:45:15 +0000
+++ lava_dispatcher/device/target.py	2012-10-24 00:47:43 +0000
@@ -77,7 +77,7 @@ 
     @property
     def scratch_dir(self):
         if self._scratch_dir is None:
-            self._scratch_dir = utils.mkdtemp(context.config.lava_image_tmpdir)
+            self._scratch_dir = utils.mkdtemp(self.context.config.lava_image_tmpdir)
         return self._scratch_dir
 
     def power_on(self):