summaryrefslogtreecommitdiff
path: root/morphlib/buildbranch.py
diff options
context:
space:
mode:
authorJavier Jardón <jjardon@gnome.org>2015-03-16 12:47:10 +0000
committerGerrit Code Review <gerrit@baserock.org>2015-03-16 12:47:10 +0000
commite763aa20569578bdd95fb2a97c16fa3d6e4d9834 (patch)
tree46fa762d32735cfdcd77dcc414f54ab0beacd1b8 /morphlib/buildbranch.py
parent2cdf37e721175e6f59a10971ee49cdd66f4e3419 (diff)
parent5903c4ea34849985b62d2f67423ae2bd32d7d13b (diff)
downloadmorph-e763aa20569578bdd95fb2a97c16fa3d6e4d9834.tar.gz
Merge "Use python3 compatible notation for octal constants"
Diffstat (limited to 'morphlib/buildbranch.py')
-rw-r--r--morphlib/buildbranch.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/morphlib/buildbranch.py b/morphlib/buildbranch.py
index 2482bc9a..ae118704 100644
--- a/morphlib/buildbranch.py
+++ b/morphlib/buildbranch.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2013-2014 Codethink Limited
+# Copyright (C) 2013-2015 Codethink Limited
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -115,7 +115,7 @@ class BuildBranch(object):
for morphology in morphologies:
loader.unset_defaults(morphology)
sha1 = gd.store_blob(loader.save_to_string(morphology))
- yield 0100644, sha1, morphology.filename
+ yield 0o100644, sha1, morphology.filename
def inject_build_refs(self, loader, use_local_repos,
inject_cb=lambda **kwargs: None):