Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
István Bozsó committed Feb 19, 2020
1 parent 335890e commit 0a0dd62
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion utils/ninja.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
import textwrap

from utils import Path
import os.path as path

__all__ = (
"Ninja",
Expand All @@ -26,7 +27,7 @@ def __init__(self, output, width=78):

@classmethod
def in_path(cls, *args, **kwargs):
p = pth.join(*args, "build.ninja")
p = path.join(*args, "build.ninja")
return cls(open(p, "w"), **kwargs)

def __del__(self):
Expand Down

0 comments on commit 0a0dd62

Please sign in to comment.