r198 - in branches/rewrite: debian src

Otavio Salvador partial-mirror-devel@lists.alioth.debian.org
Mon, 26 Jul 2004 14:22:55 -0600


Author: otavio
Date: Mon Jul 26 14:22:55 2004
New Revision: 198

Modified:
   branches/rewrite/debian/changelog
   branches/rewrite/src/debpartial-mirror.in
Log:
* Fix some spelling errors. Did at trunk and merged here.

Modified: branches/rewrite/debian/changelog
==============================================================================
--- branches/rewrite/debian/changelog	(original)
+++ branches/rewrite/debian/changelog	Mon Jul 26 14:22:55 2004
@@ -14,6 +14,13 @@
 
  -- Otavio Salvador <otavio@debian.org>  Tue, 22 Jun 2004 20:46:21 -0300
 
+debpartial-mirror (0.2.9) unstable; urgency=low
+
+  * NOT RELEASED YET
+  * Fix some spelling errors.
+
+ -- Otavio Salvador <otavio@debian.org>  Fri,  2 Jul 2004 10:39:31 -0300
+
 debpartial-mirror (0.2.8) unstable; urgency=low
 
   * Otavio Salvador

Modified: branches/rewrite/src/debpartial-mirror.in
==============================================================================
--- branches/rewrite/src/debpartial-mirror.in	(original)
+++ branches/rewrite/src/debpartial-mirror.in	Mon Jul 26 14:22:55 2004
@@ -210,7 +210,7 @@
 
                 numBytes = 0
                 while numBytes < content_length:
-                    line = "Geting " + origin + "... %d%%" % (numBytes * 100 / content_length)
+                    line = "Getting " + origin + "... %d%%" % (numBytes * 100 / content_length)
                     sys.stdout.write(line + '\r')
 
                     data = webPage.read(8 * 1024)
@@ -219,7 +219,7 @@
                     content += data
                     numBytes = numBytes + len(data)
 
-                sys.stdout.write("Geting " + origin + " done.  \n")
+                sys.stdout.write("Getting " + origin + " done.  \n")
             else:
                 if directory:
                     content = webPage.read()