Skip to content
This repository has been archived by the owner on Jul 9, 2020. It is now read-only.

Commit

Permalink
Merge pull request #15 from juriga/patch-1
Browse files Browse the repository at this point in the history
Fix str.name bug in Stylesheet.load()
  • Loading branch information
klen committed Sep 15, 2011
2 parents 77a6060 + aceade6 commit cd1a000
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scss/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ def load(self, f, precache=None):
path = os.path.abspath(f.name)

else:
path = os.path.abspath(f.name)
path = os.path.abspath(f)
f = open(f)

cache_path = os.path.splitext(path)[0] + '.ccss'
Expand Down

0 comments on commit cd1a000

Please sign in to comment.