Skip to content
This repository was archived by the owner on Sep 29, 2025. It is now read-only.

Commit 2b27545

Browse files
committed
whitespace fix
1 parent b60ca67 commit 2b27545

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

btrfs-clone.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,8 @@ def send_root(old, new):
232232
name = randstr()
233233
old_snap = "%s/%s" % (old, name)
234234
new_snap = "%s/%s" % (new, name)
235-
subprocess.check_call([opts.btrfs, "subvolume", "snapshot", "-r", old, old_snap])
235+
subprocess.check_call([opts.btrfs, "subvolume", "snapshot", "-r",
236+
old, old_snap])
236237
atexit.register(subprocess.check_call,
237238
[opts.btrfs, "subvolume", "delete", old_snap])
238239
do_send_recv(old_snap, new)

0 commit comments

Comments
 (0)