Advertisement
Guest User

Untitled

a guest
Jun 24th, 2012
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.87 KB | None | 0 0
  1. ihsan@ihsan-Presario-CQ42-Notebook-PC:~$ python
  2. Python 2.7.3rc2 (default, Mar 21 2012, 21:13:11)
  3. [GCC 4.6.3] on linux2
  4. Type "help", "copyright", "credits" or "license" for more information.
  5. >>> newcont = open("house").read().replace("</layoutList>", " <layout>
  6. File "<stdin>", line 1
  7. newcont = open("house").read().replace("</layoutList>", " <layout>
  8. ^
  9. SyntaxError: EOL while scanning string literal
  10. >>> <configItem>
  11. File "<stdin>", line 1
  12. <configItem>
  13. ^
  14. IndentationError: unexpected indent
  15. >>> <name> ara </name>
  16. File "<stdin>", line 1
  17. <name> ara </name>
  18. ^
  19. IndentationError: unexpected indent
  20. >>> <shortDescription> ara </shortDescription>
  21. File "<stdin>", line 1
  22. <shortDescription> ara </shortDescription>
  23. ^
  24. IndentationError: unexpected indent
  25. >>> <description> Arabic </description>
  26. File "<stdin>", line 1
  27. <description> Arabic </description>
  28. ^
  29. IndentationError: unexpected indent
  30. >>> <languageList>
  31. File "<stdin>", line 1
  32. <languageList>
  33. ^
  34. IndentationError: unexpected indent
  35. >>> <iso639Id> ara </iso639Id>
  36. File "<stdin>", line 1
  37. <iso639Id> ara </iso639Id>
  38. ^
  39. IndentationError: unexpected indent
  40. >>> </languageList>
  41. File "<stdin>", line 1
  42. </languageList>
  43. ^
  44. IndentationError: unexpected indent
  45. >>> </configItem>
  46. File "<stdin>", line 1
  47. </configItem>
  48. ^
  49. IndentationError: unexpected indent
  50. >>> <variantList/>
  51. File "<stdin>", line 1
  52. <variantList/>
  53. ^
  54. IndentationError: unexpected indent
  55. >>> </layout>
  56. File "<stdin>", line 1
  57. </layout>
  58. ^
  59. IndentationError: unexpected indent
  60. >>> </layoutList>
  61. File "<stdin>", line 1
  62. </layoutList>
  63. ^
  64. IndentationError: unexpected indent
  65. >>> ")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement