changeset 3346:4f1fcee83d36

plugin XEP-0264: only log "fix orientation" when the option is used
author Goffi <goffi@goffi.org>
date Tue, 25 Aug 2020 08:52:46 +0200
parents 3dc8835d96cc
children c8033a9357e7
files sat/memory/memory.py sat/plugins/plugin_xep_0264.py
diffstat 2 files changed, 4 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/sat/memory/memory.py	Tue Aug 25 08:51:35 2020 +0200
+++ b/sat/memory/memory.py	Tue Aug 25 08:52:46 2020 +0200
@@ -1,7 +1,6 @@
 #!/usr/bin/env python3
 
-
-# SAT: a jabber client
+# SàT: an XMPP client
 # Copyright (C) 2009-2020 Jérôme Poisson (goffi@goffi.org)
 
 # This program is free software: you can redistribute it and/or modify
--- a/sat/plugins/plugin_xep_0264.py	Tue Aug 25 08:51:35 2020 +0200
+++ b/sat/plugins/plugin_xep_0264.py	Tue Aug 25 08:52:46 2020 +0200
@@ -1,7 +1,6 @@
 #!/usr/bin/env python3
 
-
-# SAT plugin for managing xep-0264
+# SàT plugin for managing xep-0264
 # Copyright (C) 2009-2020 Jérôme Poisson (goffi@goffi.org)
 # Copyright (C) 2014 Emmanuel Gil Peyrot (linkmauve@linkmauve.fr)
 
@@ -163,7 +162,8 @@
             PLUGIN_INFO[C.PI_IMPORT_NAME], uid, MIME_TYPE, max_age
         ) as f:
             img.save(f, SAVE_FORMAT)
-            log.debug(f"fixed orientation for {f.name}")
+            if fix_orientation:
+                log.debug(f"fixed orientation for {f.name}")
 
         return img.size, uid