Skip to content

Commit 68b6f4d

Browse files
author
Oliver Nordbjerg
committed
fix(client): remove unassigned variable
1 parent f78f58c commit 68b6f4d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

client/deis.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1342,7 +1342,7 @@ def config_push(self, args):
13421342
with open(args.get('--path'), 'r') as f:
13431343
self._config_set(app, dictify([line.strip() for line in f]))
13441344
except IOError:
1345-
self._logger.error('could not read env from ' + env_file)
1345+
self._logger.error('could not read env from ' + args.get('--path'))
13461346
sys.exit(1)
13471347

13481348
def domains(self, args):

0 commit comments

Comments
 (0)