Merge lp:~brian-murray/apt-clone/string-fixes into lp:apt-clone

Proposed by Brian Murray
Status: Merged
Merged at revision: 99
Proposed branch: lp:~brian-murray/apt-clone/string-fixes
Merge into: lp:apt-clone
Diff against target: 35 lines (+3/-4)
1 file modified
apt-clone (+3/-4)
To merge this branch: bzr merge lp:~brian-murray/apt-clone/string-fixes
Reviewer Review Type Date Requested Status
Ubuntu Core Development Team Pending
Review via email: mp+90556@code.launchpad.net

Description of the change

Just some string fixes I noticed.

To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'apt-clone'
2--- apt-clone 2011-09-19 08:14:34 +0000
3+++ apt-clone 2012-01-27 23:51:24 +0000
4@@ -36,7 +36,7 @@
5 # clone
6 command = subparser.add_parser(
7 "clone",
8- help="create a clone-file into <destination>. A alternative source dir can be specified with --source.")
9+ help="create a clone-file into <destination>. An alternative source dir can be specified with --source.")
10 command.add_argument("--source", default="/",
11 help="The source dir of the system or chroot, usually '/'")
12 command.add_argument("destination")
13@@ -50,7 +50,7 @@
14 # restore
15 command = subparser.add_parser(
16 "restore",
17- help="restore a clone file from <source>. A alternative destination can be given with --destination.")
18+ help="restore a clone file from <source>. An alternative destination can be given with --destination.")
19 command.add_argument("source")
20 command.add_argument("--destination", default="/")
21 command.add_argument("--simulate", action="store_true", default=False)
22@@ -87,7 +87,7 @@
23 print "version mismatch: %s" % ", ".join(clone.version_mismatch)
24 if not args.with_dpkg_repack:
25 print "\nNote that you can use --with-dpkg-repack to include "\
26- "those packges in the clone file."
27+ "those packages in the clone file."
28 elif args.command == "restore":
29 if args.simulate:
30 miss = clone.simulate_restore_state(args.source)
31@@ -115,4 +115,3 @@
32 else:
33 clone.restore_state(
34 args.source, args.destination, args.new_distro_codename, protect_installed)
35-

Subscribers

People subscribed via source and target branches