[game-data-packager] 01/01: QUITE_LARGE: fix inverted logic

Alexandre Detiste detiste-guest at moszumanska.debian.org
Tue Feb 2 10:18:13 UTC 2016


This is an automated email from the git hooks/post-receive script.

detiste-guest pushed a commit to branch master
in repository game-data-packager.

commit 8747eb59a88ab0b2bf768a9dc18a1486dd1a4d61
Author: Alexandre Detiste <alexandre.detiste at gmail.com>
Date:   Tue Feb 2 11:16:58 2016 +0100

    QUITE_LARGE: fix inverted logic
    
    + https://en.wikipedia.org/wiki/BogoMips -> Timer-based delays
---
 game_data_packager/build.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/game_data_packager/build.py b/game_data_packager/build.py
index 737d75c..88332eb 100644
--- a/game_data_packager/build.py
+++ b/game_data_packager/build.py
@@ -62,9 +62,9 @@ logger = logging.getLogger(__name__)
 
 # arbitrary cutoff for providing progress bars
 if os.path.isfile('/etc/rpi-issue'):
-    QUITE_LARGE = 50 * MEBIBYTE
-else:
     QUITE_LARGE = 10 * MEBIBYTE
+else:
+    QUITE_LARGE = 50 * MEBIBYTE
 
 class FillResult(Enum):
     UNDETERMINED = 0

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-games/game-data-packager.git



More information about the Pkg-games-commits mailing list