summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2015-03-27 20:01:36 +0200
committerLars Wirzenius <liw@liw.fi>2015-03-27 20:01:36 +0200
commit5c463021c87d41c4f1d42c785842e2c70680dc30 (patch)
tree0e9b8fb26cd288c9d35fb64261440deeba0330ca
parentadab59eb8def203a63323b07cb495295a00facb1 (diff)
downloadgenbackupdata-5c463021c87d41c4f1d42c785842e2c70680dc30.tar.gz
Fix breaking of long lines to be nicer
-rwxr-xr-xgenbackupdata6
1 files changed, 2 insertions, 4 deletions
diff --git a/genbackupdata b/genbackupdata
index 551e2e2..9f70c5d 100755
--- a/genbackupdata
+++ b/genbackupdata
@@ -57,9 +57,8 @@ class GenbackupdataApp(cliapp.Application):
outputdir = args[0]
bytes = self.settings['create']
self.gen = genbackupdatalib.DataGenerator(self.settings['seed'])
- self.names = genbackupdatalib.NameGenerator(outputdir,
- self.settings['depth'],
- self.settings['max-files'])
+ self.names = genbackupdatalib.NameGenerator(
+ outputdir, self.settings['depth'], self.settings['max-files'])
self.setup_ttystatus()
self.status['total'] = bytes
@@ -110,4 +109,3 @@ class GenbackupdataApp(cliapp.Application):
if __name__ == '__main__':
GenbackupdataApp().run()
-