Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
with
3 additions
and
2 deletions.
-
+3
−2
topaz/objects/fileobject.py
|
@@ -292,8 +292,9 @@ def method_ctime(self, space): |
|
|
return self._time_at(space, stat_val.st_ctime) |
|
|
|
|
|
def _time_at(self, space, time): |
|
|
return space.send(space.getclassfor(W_TimeObject), "at", |
|
|
[space.newint(int(time))]) |
|
|
return space.send( |
|
|
space.getclassfor(W_TimeObject), "at", [space.newint(int(time))] |
|
|
) |
|
|
|
|
|
@classdef.method("chmod", mode="int") |
|
|
def method_chmod(self, space, mode): |
|
|
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.