mirror of
				https://github.com/Telecominfraproject/wlan-lanforge-scripts.git
				synced 2025-10-31 18:58:01 +00:00 
			
		
		
		
	test_status_msg.py: renames short variable
Signed-off-by: Jed Reynolds <jed@candelatech.com>
This commit is contained in:
		| @@ -12,7 +12,7 @@ if 'py-json' not in sys.path: | ||||
|  | ||||
| import argparse | ||||
| from LANforge.lfcli_base import LFCliBase | ||||
| import time | ||||
| # import time | ||||
| from uuid import uuid1 | ||||
| import pprint | ||||
| from pprint import pprint | ||||
| @@ -275,9 +275,9 @@ Actions can be: | ||||
|         if args.session is not None: | ||||
|             status_messages.json_put("/status-msg/"+args.session, {}) | ||||
|         else: | ||||
|             u = uuid1() | ||||
|             status_messages.json_put("/status-msg/"+u, {}) | ||||
|             print("created session /status-msg/"+u) | ||||
|             a_uuid = uuid1() | ||||
|             status_messages.json_put("/status-msg/"+str(a_uuid), {}) | ||||
|             print("created session /status-msg/"+str(a_uuid)) | ||||
|         return | ||||
|  | ||||
|     if args.action == "update": | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Jed Reynolds
					Jed Reynolds