Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package yast2-snapper for openSUSE:Factory 
checked in at 2023-04-06 15:55:50
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/yast2-snapper (Old)
 and      /work/SRC/openSUSE:Factory/.yast2-snapper.new.19717 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "yast2-snapper"

Thu Apr  6 15:55:50 2023 rev:66 rq:1077190 version:4.6.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/yast2-snapper/yast2-snapper.changes      
2023-03-04 22:43:50.379932077 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-snapper.new.19717/yast2-snapper.changes   
2023-04-06 15:55:51.232266021 +0200
@@ -1,0 +2,8 @@
+Tue Apr  4 08:56:07 UTC 2023 - Stefan Hundhammer <shundham...@suse.com>
+
+- Fixed translations: Moved variable message part out of _(...)
+  (bsc#1209956)
+- 4.6.1
+
+-------------------------------------------------------------------
+

Old:
----
  yast2-snapper-4.6.0.tar.bz2

New:
----
  yast2-snapper-4.6.1.tar.bz2

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ yast2-snapper.spec ++++++
--- /var/tmp/diff_new_pack.jF4TrF/_old  2023-04-06 15:55:51.788269161 +0200
+++ /var/tmp/diff_new_pack.jF4TrF/_new  2023-04-06 15:55:51.796269207 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           yast2-snapper
-Version:        4.6.0
+Version:        4.6.1
 Release:        0
 Summary:        YaST - file system snapshots review
 License:        GPL-2.0-only

++++++ yast2-snapper-4.6.0.tar.bz2 -> yast2-snapper-4.6.1.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-snapper-4.6.0/package/yast2-snapper.changes 
new/yast2-snapper-4.6.1/package/yast2-snapper.changes
--- old/yast2-snapper-4.6.0/package/yast2-snapper.changes       2023-03-03 
16:01:39.000000000 +0100
+++ new/yast2-snapper-4.6.1/package/yast2-snapper.changes       2023-04-04 
13:04:02.000000000 +0200
@@ -1,4 +1,12 @@
 -------------------------------------------------------------------
+Tue Apr  4 08:56:07 UTC 2023 - Stefan Hundhammer <shundham...@suse.com>
+
+- Fixed translations: Moved variable message part out of _(...)
+  (bsc#1209956)
+- 4.6.1
+
+-------------------------------------------------------------------
+
 Fri Mar 03 14:44:07 UTC 2023 - Ladislav Slezák <lsle...@suse.cz>
 
 - Bump version to 4.6.0 (bsc#1208913)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-snapper-4.6.0/package/yast2-snapper.spec 
new/yast2-snapper-4.6.1/package/yast2-snapper.spec
--- old/yast2-snapper-4.6.0/package/yast2-snapper.spec  2023-03-03 
16:01:39.000000000 +0100
+++ new/yast2-snapper-4.6.1/package/yast2-snapper.spec  2023-04-04 
13:04:02.000000000 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           yast2-snapper
-Version:        4.6.0
+Version:        4.6.1
 Release:        0
 Summary:        YaST - file system snapshots review
 License:        GPL-2.0-only
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-snapper-4.6.0/src/modules/Snapper.rb 
new/yast2-snapper-4.6.1/src/modules/Snapper.rb
--- old/yast2-snapper-4.6.0/src/modules/Snapper.rb      2023-03-03 
16:01:39.000000000 +0100
+++ new/yast2-snapper-4.6.1/src/modules/Snapper.rb      2023-04-04 
13:04:02.000000000 +0200
@@ -93,7 +93,7 @@
       return SnapperDbus.get_config(@current_config)
 
     rescue Exception => e
-      Report.Error(_("Failed to get config:" + "\n" + e.message))
+      Report.Error(_("Failed to get config:") + "\n" + e.message)
       return {}
     end
 
@@ -110,7 +110,7 @@
       return SnapperDbus.get_mount_point(@current_config, snapshot_num)
 
     rescue Exception => e
-      Report.Error(_("Failed to get snapshot mount point:" + "\n" + e.message))
+      Report.Error(_("Failed to get snapshot mount point:") + "\n" + e.message)
       return ""
     end
 
@@ -247,7 +247,7 @@
       return true
 
     rescue Exception => e
-      Report.Error(_("Failed to create new snapshot:" + "\n" + e.message))
+      Report.Error(_("Failed to create new snapshot:") + "\n" + e.message)
       return false
     end
 
@@ -260,7 +260,7 @@
       return true
 
     rescue Exception => e
-      Report.Error(_("Failed to modify snapshot:" + "\n" + e.message))
+      Report.Error(_("Failed to modify snapshot:") + "\n" + e.message)
       return false
     end
 
@@ -272,7 +272,7 @@
       return true
 
     rescue Exception => e
-      Report.Error(_("Failed to delete snapshot:" + "\n" + e.message))
+      Report.Error(_("Failed to delete snapshot:") + "\n" + e.message)
       return false
     end
 

Reply via email to