Skip to content

Commit

Permalink
Merge pull request #66 from newlog/fix_pwd_import
Browse files Browse the repository at this point in the history
Fix import error that does not allow running library in Windows OS
  • Loading branch information
savon-noir committed Nov 22, 2015
2 parents fe62f7b + ae7649e commit f6f1f3c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion libnmap/process.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,15 @@
# -*- coding: utf-8 -*-

import os
import pwd
import shlex
import subprocess
from threading import Thread
from xml.dom import pulldom
import warnings
try:
import pwd
except ImportError:
pass


__all__ = [
Expand Down

0 comments on commit f6f1f3c

Please sign in to comment.