|
@@ -1,5 +1,5 @@
|
|
|
-
|
|
|
-
|
|
|
+
|
|
|
+
|
|
|
|
|
|
|
|
|
|
|
@@ -13,12 +13,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
|
|
|
-
|
|
|
+
|
|
|
|
|
|
from pwman.util.crypto_engine import CryptoEngine
|
|
|
|
|
@@ -157,8 +156,9 @@ class Node(object):
|
|
|
def __repr__(self):
|
|
|
"""we use this method to write node to the database"""
|
|
|
res = u''
|
|
|
- for item in self.__dir__:
|
|
|
- res += self.__dir__[item]
|
|
|
+ tags = self.__dict__.pop('_tags', None)
|
|
|
+ for item in self.__dict__:
|
|
|
+ res += self.__dict__[item]
|
|
|
return res
|
|
|
|
|
|
def __iter__(self):
|