summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Pointner <equinox@helsinki.at>2013-02-11 16:57:04 (GMT)
committerChristian Pointner <equinox@helsinki.at>2013-02-11 16:57:04 (GMT)
commit1dea0d52f27eacda4504ca8d2703c3d09f33a73e (patch)
treea8dae26028f5a7665e9f7d5d6568d58c245adf8b
parentfad7219e369e7d183c7ac26103f435d9eb4e5ce1 (diff)
added dn! fix
-rw-r--r--debian/changelog6
-rwxr-xr-xrhimport-dn2
2 files changed, 8 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
index cd919aa..903f46f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -4,6 +4,12 @@ rhimport (0.3.10-1) unstable; urgency=low
-- Christian Pointner <equinox@helsinki.at> Thu, 11 Feb 2013 17:53:44 +0100
+rhimport (0.3.9-4) unstable; urgency=low
+
+ * fixed DN! import (missing last; )
+
+ -- Christian Pointner <equinox@helsinki.at> Wed, 23 Jan 2013 19:15:17 +0100
+
rhimport (0.3.9-3) unstable; urgency=low
* decoding HTML Entities before feeding it to PV
diff --git a/rhimport-dn b/rhimport-dn
index 5682ff1..dac3a0d 100755
--- a/rhimport-dn
+++ b/rhimport-dn
@@ -156,6 +156,8 @@ for my $entry ($headlines_feed->entries) {
print "summary:\n" . $sum_title . "\n\n" . $sum_text . "\n";
rhimport::pv_add_note($sum_title, $sum_text, $PV_ID, sprintf("%04d-%02d-%02d", $import_day[0], $import_day[1], $import_day[2]), "1");
print "\n";
+
+ last;
}
}
}