diff options
author | 2016-08-06 20:45:53 +0300 | |
---|---|---|
committer | 2016-08-06 20:45:53 +0300 | |
commit | fef2d27782b661913f52a0016447bfdcc3ce49af (patch) | |
tree | 1eefee12b52b312154c776bd3a56d08ad6377bc3 | |
parent | 4eda110323ee287cf5bfb9cb84e1d620ccb07f8b (diff) |
typo in master_daemon
-rwxr-xr-x | scripts/master_daemon.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/master_daemon.py b/scripts/master_daemon.py index e4042e14..dd4d805a 100755 --- a/scripts/master_daemon.py +++ b/scripts/master_daemon.py @@ -53,7 +53,7 @@ def update_trex(package_path = 'http://trex-tgn.cisco.com/trex/release/latest'): if not len(unpacked_dirs) or len(unpacked_dirs) > 1: raise Exception('Should be exactly one unpacked directory, got: %s' % unpacked_dirs) cur_dir = args.trex_dir - if os.path.islink(cur_dir) or os.path.isfile(cur_dir)): + if os.path.islink(cur_dir) or os.path.isfile(cur_dir): os.unlink(cur_dir) if not os.path.exists(cur_dir): os.makedirs(cur_dir) |