From ef9fb2e6e5c3eec849d76672fe09cae7da03a05a Mon Sep 17 00:00:00 2001 From: Sriram Karra Date: Fri, 30 Aug 2013 06:50:41 +0530 Subject: [PATCH] Minor patch to output of --op=list-profiles --- asynk/state.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/asynk/state.py b/asynk/state.py index c42ca02..a751c91 100644 --- a/asynk/state.py +++ b/asynk/state.py @@ -634,7 +634,7 @@ def list_profiles (self): def list_profile_names (self): for key in self.get_profiles().keys(): - logging.info('%s', key) + logging.info('Profile: %s', key) def show_profile (self, name): profile = self.get_profiles()[name]