diff piecrust/baking/baker.py @ 199:aaf08277b96d

bake: Remove `--portable` option until it's (maybe) implemented.
author Ludovic Chabant <ludovic@chabant.com>
date Tue, 13 Jan 2015 20:41:44 -0800
parents 232989a6df36
children e725af1d48fb
line wrap: on
line diff
--- a/piecrust/baking/baker.py	Tue Jan 13 20:40:22 2015 -0800
+++ b/piecrust/baking/baker.py	Tue Jan 13 20:41:44 2015 -0800
@@ -18,13 +18,12 @@
 
 
 class Baker(object):
-    def __init__(self, app, out_dir, force=False, portable=False,
+    def __init__(self, app, out_dir, force=False,
                  no_assets=False, num_workers=4):
         assert app and out_dir
         self.app = app
         self.out_dir = out_dir
         self.force = force
-        self.portable = portable
         self.no_assets = no_assets
         self.num_workers = num_workers