Skip to content

Commit

Permalink
oop
Browse files Browse the repository at this point in the history
  • Loading branch information
ofek committed May 13, 2019
1 parent 959f9da commit 07b221a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
skip_branch_with_pr: true
branches:
only:
- master

environment:
matrix:
- PYTHON: "C:\\Python27-x64"
Expand Down
2 changes: 1 addition & 1 deletion userpath/interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def put(self, location, front=True, app_name=None):
app_name = app_name or 'userpath'

for shell in self.shells:
for file, contents in shell.config(location, front=front):
for file, contents in shell.config(location, front=front).items():
try:
if os.path.exists(file):
with open(file, 'r', encoding='utf-8') as f:
Expand Down

0 comments on commit 07b221a

Please sign in to comment.