Merge lp:~lazypower/charms/trusty/hdp-pig/fix_insecure_fetch into lp:~asanjar/charms/trusty/hdp-pig/trunk

Proposed by Charles Butler
Status: Merged
Merged at revision: 15
Proposed branch: lp:~lazypower/charms/trusty/hdp-pig/fix_insecure_fetch
Merge into: lp:~asanjar/charms/trusty/hdp-pig/trunk
Diff against target: 12 lines (+1/-1)
1 file modified
hooks/hdputils.py (+1/-1)
To merge this branch: bzr merge lp:~lazypower/charms/trusty/hdp-pig/fix_insecure_fetch
Reviewer Review Type Date Requested Status
amir sanjar Approve
Review via email: mp+235226@code.launchpad.net

Description of the change

fixes missing path seperator

To post a comment you must log in.
Revision history for this message
amir sanjar (asanjar) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'hooks/hdputils.py'
2--- hooks/hdputils.py 2014-09-18 19:59:48 +0000
3+++ hooks/hdputils.py 2014-09-19 00:32:49 +0000
4@@ -57,7 +57,7 @@
5
6 def install_base_pkg(packages):
7 log ("==> install_base_pkg", "INFO")
8- listpath = os.path.join('etc', 'apt', 'sources.list.d', 'hdp.list')
9+ listpath = os.path.join(os.path.sep, 'etc', 'apt', 'sources.list.d', 'hdp.list')
10 au = ArchiveUrlFetchHandler()
11 if not os.path.exists(listpath):
12 listsum = '3e53ca19f2c4461a6f4246a049a73779c4e81bce'

Subscribers

People subscribed via source and target branches