From 15cb611764ba766293694d5f94cdde9a5359aaeb Mon Sep 17 00:00:00 2001 From: Dmitriy Yefremov Date: Fri, 23 Feb 2018 17:36:49 +0300 Subject: [PATCH] fix flags --- app/ui/service_details_dialog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/ui/service_details_dialog.py b/app/ui/service_details_dialog.py index ee982756..1dce1f28 100644 --- a/app/ui/service_details_dialog.py +++ b/app/ui/service_details_dialog.py @@ -316,7 +316,7 @@ class ServiceDetailsDialog: f_flags = f_flags + Flag.PIDS.value if self._use_pids_check_button.get_active() else f_flags f_flags = f_flags + Flag.NEW.value if self._new_check_button.get_active() else f_flags if f_flags: - flags.append("f:{:02x}".format(f_flags)) + flags.append("f:{:02d}".format(f_flags)) return ",".join(flags)