Miscellaneous » zfs-replicate
Clone URL:  
Pushed to one repository · View In Graph Contained in tip

Fixed coding guideline violations

Bugzid:2130456

Changeset 9ea51ea2eacc

Parent 4cfc9f512e68

by Profile picture of User 912Tim Stewart <tim@fogcreek.com>

Changes to one file · Browse files at 9ea51ea2eacc Showing diff from parent 4cfc9f512e68 Diff from another changeset...

Change 1 of 2 Show Entire File zfs-replicate Stacked
 
166
167
168
169
170
 
 
171
172
173
 
239
240
241
242
 
243
244
245
 
166
167
168
 
 
169
170
171
172
173
 
239
240
241
 
242
243
244
245
@@ -166,8 +166,8 @@
 def split_dest(dest):   m = re.match('^([^:]+):([^:]+)$', dest)   if not m: - raise InvalidDestinationError() - return (m.group(1), m.group(2)) + raise InvalidDestinationError + return m.group(1), m.group(2)      def replicate(begin_snap, end_snap, dst_host, dst_fs, verbose=False, @@ -239,7 +239,7 @@
  "with cron")   parser.add_option('-v', '--verbose', dest='verbose', action="store_true",   default=False, help="be verbose about progress") - (options, args) = parser.parse_args() + options, args = parser.parse_args()   if not args:   parser.print_help()   sys.exit(0)