Missing newline at the end of some log entries.
authorJán Kupec <jkupec@suse.cz>
Mon, 26 Jan 2009 07:27:08 +0000 (08:27 +0100)
committerJán Kupec <jkupec@suse.cz>
Mon, 26 Jan 2009 07:27:08 +0000 (08:27 +0100)
zypp/HistoryLog.cc

index 44d26fa..7839d6f 100644 (file)
@@ -269,16 +269,18 @@ namespace zypp
         << timestamp()                                    // 1 timestamp
         << _sep << HistoryActionID::REPO_CHANGE_ALIAS.asString(true) // 2 action
         << _sep << str::escape(oldrepo.alias(), _sep)     // 3 old alias
-        << _sep << str::escape(newrepo.alias(), _sep);    // 4 new alias
+        << _sep << str::escape(newrepo.alias(), _sep)     // 4 new alias
+        << endl;
     }
 
     if (*oldrepo.baseUrlsBegin() != *newrepo.baseUrlsBegin())
     {
       _log
-        << timestamp()                                    // 1 timestamp
+        << timestamp()                                             //1 timestamp
         << _sep << HistoryActionID::REPO_CHANGE_URL.asString(true) // 2 action
         << _sep << str::escape(oldrepo.alias(), _sep)              // 3 old url
-        << _sep << *newrepo.baseUrlsBegin();                       // 4 new url
+        << _sep << *newrepo.baseUrlsBegin()                        // 4 new url
+        << endl;
     }
   }